Novell.Directory.Ldap.Asn1.Asn1Null.encode C# (CSharp) Method

encode() public method

Call this method to encode the current instance into the specified output stream using the specified encoder object.
public encode ( Asn1Encoder enc, System out_Renamed ) : void
enc Asn1Encoder Encoder object to use when encoding self. /// ///
out_Renamed System
return void
        public override void encode(Asn1Encoder enc, System.IO.Stream out_Renamed)
        {
            enc.encode(this, out_Renamed);
            return ;
        }