NTP Analyzer  0.8.2
Analyze the operation of time servers
Ntp.Analyzer.Page.PageBuilderBase Class Referenceabstract
Inheritance diagram for Ntp.Analyzer.Page.PageBuilderBase:
Collaboration diagram for Ntp.Analyzer.Page.PageBuilderBase:

Public Member Functions

abstract Stream Generate ()
 

Protected Member Functions

Stream ToStream (string text)
 

Properties

abstract IEnumerable< StreamDestinationDestinations [get]
 
- Properties inherited from Ntp.Analyzer.Export.IStreamGenerator
IEnumerable< StreamDestinationDestinations [get]
 

Detailed Description

Definition at line 29 of file PageBuilderBase.cs.

Member Function Documentation

Stream Ntp.Analyzer.Page.PageBuilderBase.ToStream ( string  text)
inlineprotected

Definition at line 35 of file PageBuilderBase.cs.

36  {
37  var stream = new MemoryStream();
38 
39  var writer = new StreamWriter(stream, Encoding.UTF8);
40  writer.Write(text);
41  writer.Flush();
42 
43  return stream;
44  }

Property Documentation

abstract IEnumerable<StreamDestination> Ntp.Analyzer.Page.PageBuilderBase.Destinations
get

Definition at line 31 of file PageBuilderBase.cs.


The documentation for this class was generated from the following file: