Nullfähigkeit zu den Methoden GetEnvelopeUuid und GetReceiverSignature hinzugefügt.

This commit is contained in:
Developer 02 2024-05-29 09:27:15 +02:00
parent 88da8e4ace
commit 1357b714cf

View File

@ -90,13 +90,13 @@
/// </summary> /// </summary>
/// <param name="envelopeReceiverId">The base64 encoded string to decode.</param> /// <param name="envelopeReceiverId">The base64 encoded string to decode.</param>
/// <returns>The envelope UUID.</returns> /// <returns>The envelope UUID.</returns>
public static string GetEnvelopeUuid(this string envelopeReceiverId) => envelopeReceiverId.DecodeEnvelopeReceiverId().EnvelopeUuid; public static string? GetEnvelopeUuid(this string envelopeReceiverId) => envelopeReceiverId.DecodeEnvelopeReceiverId().EnvelopeUuid;
/// <summary> /// <summary>
/// Gets the receiver signature from the decoded envelope receiver ID. /// Gets the receiver signature from the decoded envelope receiver ID.
/// </summary> /// </summary>
/// <param name="envelopeReceiverId">The base64 encoded string to decode.</param> /// <param name="envelopeReceiverId">The base64 encoded string to decode.</param>
/// <returns>The receiver signature.</returns> /// <returns>The receiver signature.</returns>
public static string GetReceiverSignature(this string envelopeReceiverId) => envelopeReceiverId.DecodeEnvelopeReceiverId().ReceiverSignature; public static string? GetReceiverSignature(this string envelopeReceiverId) => envelopeReceiverId.DecodeEnvelopeReceiverId().ReceiverSignature;
} }
} }