Discuss this help topic in SecureBlackbox Forum

TElX509Certificate.SaveToStream

TElX509Certificate     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Writes the certificate to the stream.

Declaration

[C#]
    void SaveToStream(System.IO.Stream Stream);

[VB.NET]
    Sub SaveToStream(ByVal Stream As System.IO.Stream)

[Pascal]
    procedure SaveToStream(Stream : TStream);

[C++]
    void SaveToStream(TStream &Stream);
    void SaveToStream(TStream *Stream);

[PHP]
    void SaveToStream(TStream $Stream)

[Java]
    void saveToStream(OutputStream Stream);
    void saveToStream(TElStream Stream);

Parameters

  • Stream - The stream to which the certificate is written.

Description

    Use this method to write the certificate to the stream. The certificate is saved in DER format.

See also:     LoadFromStream     SaveToBuffer    

Discuss this help topic in SecureBlackbox Forum