CoseMultiSignMessage.RemoveSignature Method     
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Removes the signature at the specified index from the message.
public:
 void RemoveSignature(int index);public void RemoveSignature(int index);member this.RemoveSignature : int -> unitPublic Sub RemoveSignature (index As Integer)Parameters
- index
- Int32
The zero-based index of the signature to remove.
Exceptions
See also
Applies to
RemoveSignature(CoseSignature)
- 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 -> unitPublic Sub RemoveSignature (signature As CoseSignature)Parameters
- signature
- CoseSignature
The signature to remove from the message.
Exceptions
signature is null.