C# Class DynamicRest.JsonWriter

Afficher le fichier Open project: nikhilk/dynamicrest Class Usage Examples

Méthodes publiques

Méthode Description
EndScope ( ) : void
JsonWriter ( ) : System
JsonWriter ( TextWriter writer ) : System
JsonWriter ( TextWriter writer, bool minimizeWhitespace ) : System
JsonWriter ( bool minimizeWhitespace ) : System
StartArrayScope ( ) : void
StartObjectScope ( ) : void
WriteName ( string name ) : void
WriteValue ( System.DateTime dateTime ) : void
WriteValue ( ICollection items ) : void
WriteValue ( IDictionary record ) : void
WriteValue ( bool value ) : void
WriteValue ( double value ) : void
WriteValue ( float value ) : void
WriteValue ( int value ) : void
WriteValue ( object o ) : void
WriteValue ( string s ) : void

Private Methods

Méthode Description
EscapeString ( string s ) : string
StartScope ( ScopeType type ) : void
WriteCore ( string text, bool quotes ) : void

Method Details

EndScope() public méthode

public EndScope ( ) : void
Résultat void

JsonWriter() public méthode

public JsonWriter ( ) : System
Résultat System

JsonWriter() public méthode

public JsonWriter ( TextWriter writer ) : System
writer System.IO.TextWriter
Résultat System

JsonWriter() public méthode

public JsonWriter ( TextWriter writer, bool minimizeWhitespace ) : System
writer System.IO.TextWriter
minimizeWhitespace bool
Résultat System

JsonWriter() public méthode

public JsonWriter ( bool minimizeWhitespace ) : System
minimizeWhitespace bool
Résultat System

StartArrayScope() public méthode

public StartArrayScope ( ) : void
Résultat void

StartObjectScope() public méthode

public StartObjectScope ( ) : void
Résultat void

WriteName() public méthode

public WriteName ( string name ) : void
name string
Résultat void

WriteValue() public méthode

public WriteValue ( System.DateTime dateTime ) : void
dateTime System.DateTime
Résultat void

WriteValue() public méthode

public WriteValue ( ICollection items ) : void
items ICollection
Résultat void

WriteValue() public méthode

public WriteValue ( IDictionary record ) : void
record IDictionary
Résultat void

WriteValue() public méthode

public WriteValue ( bool value ) : void
value bool
Résultat void

WriteValue() public méthode

public WriteValue ( double value ) : void
value double
Résultat void

WriteValue() public méthode

public WriteValue ( float value ) : void
value float
Résultat void

WriteValue() public méthode

public WriteValue ( int value ) : void
value int
Résultat void

WriteValue() public méthode

public WriteValue ( object o ) : void
o object
Résultat void

WriteValue() public méthode

public WriteValue ( string s ) : void
s string
Résultat void