NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

EventLogEntry.Save

Saves an entry as a stream of data.

[Visual Basic]
Overridable Public Sub Save( _
   ByVal stream As Stream _
)
[C#]
public virtual void Save(
   Stream stream
);
[C++]
public: virtual void Save(
   Stream* stream
);
[JScript]
public function Save(
   stream : Stream
);

Parameters

stream
The TBD Object that writes the chunk containing the EventLogEntry to disk.

Remarks

This method performs a Byte-wise write of the entry to disk.

See Also

EventLogEntry Class | EventLogEntry Members | System.Diagnostics Namespace | IPersistable