Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo.GetInstance C# (CSharp) Method

GetInstance() public static method

public static GetInstance ( Asn1TaggedObject obj, bool explicitly ) : OtherRecipientInfo
obj Asn1TaggedObject
explicitly bool
return OtherRecipientInfo
        public static OtherRecipientInfo GetInstance(
            Asn1TaggedObject	obj,
            bool				explicitly)
        {
            return GetInstance(Asn1Sequence.GetInstance(obj, explicitly));
        }

Same methods

OtherRecipientInfo::GetInstance ( object obj ) : OtherRecipientInfo

Usage Example

 public static OtherRecipientInfo GetInstance(Asn1TaggedObject obj, bool explicitly)
 {
     return(OtherRecipientInfo.GetInstance(Asn1Sequence.GetInstance(obj, explicitly)));
 }