C# 클래스 Newtonsoft.Json.Linq.JConstructor

Represents a JSON constructor.
상속: JContainer
파일 보기 프로젝트 열기: runegri/Applicable 1 사용 예제들

공개 메소드들

메소드 설명
JConstructor ( ) : System

Initializes a new instance of the JConstructor class.

JConstructor ( JConstructor other ) : System

Initializes a new instance of the JConstructor class from another JConstructor object.

JConstructor ( string name ) : System

Initializes a new instance of the JConstructor class with the specified name and content.

JConstructor ( string name, object content ) : System

Initializes a new instance of the JConstructor class with the specified name and content.

Load ( JsonReader reader ) : JConstructor

Loads an JConstructor from a JsonReader.

WriteTo ( JsonWriter writer ) : void

Writes this token to a JsonWriter.

this ( object key ) : JToken

Gets the JToken with the specified key.

비공개 메소드들

메소드 설명
CloneToken ( ) : JToken
DeepEquals ( JToken node ) : bool
GetDeepHashCode ( ) : int

메소드 상세

JConstructor() 공개 메소드

Initializes a new instance of the JConstructor class.
public JConstructor ( ) : System
리턴 System

JConstructor() 공개 메소드

Initializes a new instance of the JConstructor class from another JConstructor object.
public JConstructor ( JConstructor other ) : System
other JConstructor A object to copy from.
리턴 System

JConstructor() 공개 메소드

Initializes a new instance of the JConstructor class with the specified name and content.
public JConstructor ( string name ) : System
name string The constructor name.
리턴 System

JConstructor() 공개 메소드

Initializes a new instance of the JConstructor class with the specified name and content.
public JConstructor ( string name, object content ) : System
name string The constructor name.
content object The contents of the constructor.
리턴 System

Load() 공개 정적인 메소드

Loads an JConstructor from a JsonReader.
public static Load ( JsonReader reader ) : JConstructor
reader JsonReader A that will be read for the content of the .
리턴 JConstructor

WriteTo() 공개 메소드

Writes this token to a JsonWriter.
public WriteTo ( JsonWriter writer ) : void
writer JsonWriter A into which this method will write.
리턴 void

this() 공개 메소드

Gets the JToken with the specified key.
public this ( object key ) : JToken
key object
리턴 JToken