Org.BouncyCastle.Asn1.Asn1Object.ToAsn1Object C# (CSharp) Méthode

ToAsn1Object() public final méthode

public final ToAsn1Object ( ) : Asn1Object
Résultat Asn1Object
		public sealed override Asn1Object ToAsn1Object()
        {
            return this;
        }

Usage Example

 public DerExternal(DerObjectIdentifier directReference, DerInteger indirectReference, Asn1Object dataValueDescriptor, int encoding, Asn1Object externalData)
 {
     this.DirectReference     = directReference;
     this.IndirectReference   = indirectReference;
     this.DataValueDescriptor = dataValueDescriptor;
     this.Encoding            = encoding;
     this.ExternalContent     = externalData.ToAsn1Object();
 }
All Usage Examples Of Org.BouncyCastle.Asn1.Asn1Object::ToAsn1Object