Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo.GetInstance C# (CSharp) Метод

GetInstance() публичный статический Метод

public static GetInstance ( Asn1TaggedObject obj, bool explicitly ) : KeyAgreeRecipientInfo
obj Org.BouncyCastle.Asn1.Asn1TaggedObject
explicitly bool
Результат KeyAgreeRecipientInfo
        public static KeyAgreeRecipientInfo GetInstance(
            Asn1TaggedObject	obj,
            bool				explicitly)
        {
            return GetInstance(Asn1Sequence.GetInstance(obj, explicitly));
        }

Same methods

KeyAgreeRecipientInfo::GetInstance ( object obj ) : KeyAgreeRecipientInfo

Usage Example

Пример #1
0
 public static KeyAgreeRecipientInfo GetInstance(Asn1TaggedObject obj, bool explicitly)
 {
     return(KeyAgreeRecipientInfo.GetInstance(Asn1Sequence.GetInstance(obj, explicitly)));
 }