CSReportWebServer.NativeMessaging.Port.Write C# (CSharp) Метод

Write() публичный Метод

Writes the native message to output stream synchronously.
This method actually starts an asynchronous operation an the waits until it is finished.
The message parameter is null. The output stream IO exception. The output stream was closed. The output stream does not support write operation. The native message that is to be written is not of UTF-8 encoding. The allocation of the native message buffer has failed.
public Write ( string message ) : void
message string The native message that is to be written to the output stream.
Результат void
        public void Write(string message)
        {
            EndWrite(BeginWrite(message, null, null));
        }
    }