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

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

공개 메소드들

메소드 설명
Children ( ) : JEnumerable

Returns a collection of the child tokens of this token, in document order.

JProperty ( JProperty other ) : System

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

JProperty ( string name, object content ) : System

Initializes a new instance of the JProperty class.

Load ( JsonReader reader ) : JProperty

Loads an JProperty from a JsonReader.

WriteTo ( JsonWriter writer ) : void

Writes this token to a JsonWriter.

비공개 메소드들

메소드 설명
AddItem ( bool isLast, JToken previous, JToken item ) : void
ClearItems ( ) : void
CloneToken ( ) : JToken
ContainsItem ( JToken item ) : bool
DeepEquals ( JToken node ) : bool
GetDeepHashCode ( ) : int
GetItem ( int index ) : JToken
GetValueEnumerable ( ) : IEnumerable
InsertItem ( int index, JToken item ) : void
JProperty ( string name ) : System
RemoveItem ( JToken item ) : bool
RemoveItemAt ( int index ) : void
ReplaceItem ( JToken existing, JToken replacement ) : void
SetItem ( int index, JToken item ) : void

메소드 상세

Children() 공개 메소드

Returns a collection of the child tokens of this token, in document order.
public Children ( ) : JEnumerable
리턴 JEnumerable

JProperty() 공개 메소드

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

JProperty() 공개 메소드

Initializes a new instance of the JProperty class.
public JProperty ( string name, object content ) : System
name string The property name.
content object The property content.
리턴 System

Load() 공개 정적인 메소드

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

WriteTo() 공개 메소드

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