Share via


SignerInfo.RemoveCounterSignature 方法

定义

CounterSignerInfos 集合中移除指定的副署。

重载

RemoveCounterSignature(Int32)

RemoveCounterSignature(Int32) 方法移除 CounterSignerInfos 集合中指定索引处的副署。

RemoveCounterSignature(SignerInfo)

RemoveCounterSignature(SignerInfo) 方法移除指定 SignerInfo 对象的副署。

RemoveCounterSignature(Int32)

Source:
SignerInfo.cs
Source:
SignerInfo.cs
Source:
SignerInfo.cs
Source:
SignerInfo.cs

RemoveCounterSignature(Int32) 方法移除 CounterSignerInfos 集合中指定索引处的副署。

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

参数

index
Int32

要移除的副署的索引(从零开始)。

例外

未能完成加密操作。

适用于

RemoveCounterSignature(SignerInfo)

Source:
SignerInfo.cs
Source:
SignerInfo.cs
Source:
SignerInfo.cs
Source:
SignerInfo.cs

RemoveCounterSignature(SignerInfo) 方法移除指定 SignerInfo 对象的副署。

public:
 void RemoveCounterSignature(System::Security::Cryptography::Pkcs::SignerInfo ^ counterSignerInfo);
public void RemoveCounterSignature (System.Security.Cryptography.Pkcs.SignerInfo counterSignerInfo);
member this.RemoveCounterSignature : System.Security.Cryptography.Pkcs.SignerInfo -> unit
Public Sub RemoveCounterSignature (counterSignerInfo As SignerInfo)

参数

counterSignerInfo
SignerInfo

表示被移除的副署的 SignerInfo 对象。

例外

向不接受空引用作为有效参数的方法传递了一个空引用。

参数值超出了被调用方法定义的允许值范围。

未能完成加密操作。

适用于