C# Class NServiceBus.XmlSanitizingStream

Inheritance: System.IO.StreamReader
Afficher le fichier Open project: Particular/NServiceBus

Méthodes publiques

Méthode Description
IsLegalXmlChar ( int character ) : bool

Get whether an integer represents a legal XML 1.0 character. See the specification at w3.org for these characters.

IsLegalXmlChar ( string xmlVersion, int character ) : bool
Peek ( ) : int
Read ( ) : int
Read ( char buffer, int index, int count ) : int
ReadBlock ( char buffer, int index, int count ) : int
ReadLine ( ) : string
ReadToEnd ( ) : string
XmlSanitizingStream ( Stream streamToSanitize ) : System

Method Details

IsLegalXmlChar() public static méthode

Get whether an integer represents a legal XML 1.0 character. See the specification at w3.org for these characters.
public static IsLegalXmlChar ( int character ) : bool
character int
Résultat bool

IsLegalXmlChar() public static méthode

public static IsLegalXmlChar ( string xmlVersion, int character ) : bool
xmlVersion string
character int
Résultat bool

Peek() public méthode

public Peek ( ) : int
Résultat int

Read() public méthode

public Read ( ) : int
Résultat int

Read() public méthode

public Read ( char buffer, int index, int count ) : int
buffer char
index int
count int
Résultat int

ReadBlock() public méthode

public ReadBlock ( char buffer, int index, int count ) : int
buffer char
index int
count int
Résultat int

ReadLine() public méthode

public ReadLine ( ) : string
Résultat string

ReadToEnd() public méthode

public ReadToEnd ( ) : string
Résultat string

XmlSanitizingStream() public méthode

public XmlSanitizingStream ( Stream streamToSanitize ) : System
streamToSanitize Stream
Résultat System