Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo.GetInstance C# (CSharp) Méthode

GetInstance() public static méthode

public static GetInstance ( Asn1TaggedObject obj, bool explicitly ) : PasswordRecipientInfo
obj Org.BouncyCastle.Asn1.Asn1TaggedObject
explicitly bool
Résultat PasswordRecipientInfo
        public static PasswordRecipientInfo GetInstance(
            Asn1TaggedObject	obj,
            bool				explicitly)
        {
            return GetInstance(Asn1Sequence.GetInstance(obj, explicitly));
        }

Same methods

PasswordRecipientInfo::GetInstance ( object obj ) : PasswordRecipientInfo

Usage Example

Exemple #1
0
 public static PasswordRecipientInfo GetInstance(Asn1TaggedObject obj, bool explicitly)
 {
     return(PasswordRecipientInfo.GetInstance(Asn1Sequence.GetInstance(obj, explicitly)));
 }