C# Class SiteStatus.Report

Mostra file Open project: iinteractive/site-status Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
DeserializeFrom ( Stream stream ) : Report

Utility method for deserializing a report.

DeserializeFrom ( TextReader reader ) : Report

Utility method for deserializing a report.

DeserializeFrom ( XmlReader reader ) : Report

Utility method for deserializing a report.

SerializeTo ( Stream stream ) : void

Utility method for serializing the report.

SerializeTo ( TextWriter writer ) : void

Utility method for serializing the report.

SerializeTo ( XmlWriter writer ) : void

Utility method for serializing the report.

Method Details

DeserializeFrom() public static method

Utility method for deserializing a report.
public static DeserializeFrom ( Stream stream ) : Report
stream System.IO.Stream The stream to read from.
return Report

DeserializeFrom() public static method

Utility method for deserializing a report.
public static DeserializeFrom ( TextReader reader ) : Report
reader System.IO.TextReader The text reader to read from.
return Report

DeserializeFrom() public static method

Utility method for deserializing a report.
public static DeserializeFrom ( XmlReader reader ) : Report
reader XmlReader The xml reader to read from.
return Report

SerializeTo() public method

Utility method for serializing the report.
public SerializeTo ( Stream stream ) : void
stream System.IO.Stream The stream to write the report to.
return void

SerializeTo() public method

Utility method for serializing the report.
public SerializeTo ( TextWriter writer ) : void
writer System.IO.TextWriter The text writer to write the report to.
return void

SerializeTo() public method

Utility method for serializing the report.
public SerializeTo ( XmlWriter writer ) : void
writer System.Xml.XmlWriter The xml writer to write the report to.
return void