메소드 | 설명 | |
---|---|---|
AsString ( this s ) : string |
An abstraction over reading a string from a stream
|
|
AsString ( this s, |
An abstraction over reading a string from a stream
|
|
AsString ( this s, |
An abstraction over reading a string from a stream
|
|
AsString ( this s, |
An abstraction over reading a string from a stream
|
|
AsString ( this s, bool detectEncodingFromByteOrderMarks ) : string |
An abstraction over reading a string from a stream
|
|
Default ( this t ) : dynamic |
Returns the default value for a type, much like the default keyword
|
|
Deserialize ( this jss, string s, |
An extension method that allows the Nancy JavaScriptSerializer to generically deserialize JSON to a type given at runtime
|
|
IsBasic ( this t ) : bool |
Checks whether a type is a "basic" type as per the C# specification or a nullable version thereof
|
public static AsString ( this s ) : string | ||
s | this | The stream to read from |
리턴 | string |
public static AsString ( this s, |
||
s | this | The stream to read from |
encoding | The encoding used to read the string | |
리턴 | string |
public static AsString ( this s, |
||
s | this | The stream to read from |
encoding | The encoding used to read the string | |
detectEncodingFromByteOrderMarks | bool | A boolean indicating whether the /// metod should attempt to detect the encoding from the byte order marks |
리턴 | string |
public static AsString ( this s, |
||
s | this | The stream to read from |
encoding | The encoding used to read the string | |
detectEncodingFromByteOrderMarks | bool | A boolean indicating whether the /// metod should attempt to detect the encoding from the byte order marks |
bufferSize | int | The size of the buffer used in reading the string |
리턴 | string |
public static AsString ( this s, bool detectEncodingFromByteOrderMarks ) : string | ||
s | this | The stream to read from |
detectEncodingFromByteOrderMarks | bool | A boolean indicating whether the /// metod should attempt to detect the encoding from the byte order marks |
리턴 | string |
public static Default ( this t ) : dynamic | ||
t | this | The type to get a default value for |
리턴 | dynamic |
public static Deserialize ( this jss, string s, |
||
jss | this | The JavaScriptSerializer which preforms the conversion |
s | string | The JSON string to deserialize |
t | The type to deserialzie to | |
리턴 | object |