Upravit

Sdílet prostřednictvím


CoseMultiSignMessage.RemoveSignature Method

Definition

Overloads

RemoveSignature(Int32)

Removes the signature at the specified index from the message.

RemoveSignature(CoseSignature)

Removes the specified signature from the message.

RemoveSignature(Int32)

Source:
CoseMultiSignMessage.cs
Source:
CoseMultiSignMessage.cs
Source:
CoseMultiSignMessage.cs
Source:
CoseMultiSignMessage.cs

Removes the signature at the specified index from the message.

public:
 void RemoveSignature(int index);
public void RemoveSignature (int index);
member this.RemoveSignature : int -> unit
Public Sub RemoveSignature (index As Integer)

Parameters

index
Int32

The zero-based index of the signature to remove.

Exceptions

index is less than 0.

-or-

index is equal to or greater than the number of elements in Signatures.

Applies to

RemoveSignature(CoseSignature)

Source:
CoseMultiSignMessage.cs
Source:
CoseMultiSignMessage.cs
Source:
CoseMultiSignMessage.cs
Source:
CoseMultiSignMessage.cs

Removes the specified signature from the message.

public:
 void RemoveSignature(System::Security::Cryptography::Cose::CoseSignature ^ signature);
public void RemoveSignature (System.Security.Cryptography.Cose.CoseSignature signature);
member this.RemoveSignature : System.Security.Cryptography.Cose.CoseSignature -> unit
Public Sub RemoveSignature (signature As CoseSignature)

Parameters

signature
CoseSignature

The signature to remove from the message.

Exceptions

signature is null.

Applies to