Discuss this help topic in SecureBlackbox Forum

TElCertificateRequest.SaveToStream

TElCertificateRequest     See also     


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


Writes the certificate request 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(TElStream Stream);
    void saveToStream(OutputStream Stream);

Parameters

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

Description

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

See also:     LoadFromBuffer    

Discuss this help topic in SecureBlackbox Forum