C# 클래스 System.Runtime.Serialization.Json.DataContractJsonSerializerImpl

상속: System.Runtime.Serialization.XmlObjectSerializer
파일 보기 프로젝트 열기: dotnet/corefx 1 사용 예제들

Private Properties

프로퍼티 타입 설명
AddCollectionItemTypeToKnownTypes void
CheckIfJsonNameRequiresMapping bool
CheckIfJsonNameRequiresMapping bool
CheckIfTypeIsReference void
CheckIfXmlNameRequiresMapping bool
CheckIfXmlNameRequiresMapping bool
ConvertXmlNameToJsonName System.Xml.XmlDictionaryString
ConvertXmlNameToJsonName string
DataContractJsonSerializerImpl System.Runtime.Serialization
GetDataContract System.Runtime.Serialization.DataContract
GetDeserializeType System.Type
GetSerializeType System.Type
Initialize void
Initialize void
InternalIsStartObject bool
InternalReadObject object
InternalWriteEndObject void
InternalWriteObject void
InternalWriteObjectContent void
InternalWriteStartObject void
IsJsonLocalName bool
ReadJsonValue object
WriteJsonNull void
WriteJsonValue void

공개 메소드들

메소드 설명
DataContractJsonSerializerImpl ( Type type ) : System.Runtime.Serialization
DataContractJsonSerializerImpl ( Type type, DataContractJsonSerializerSettings settings ) : System.Runtime.Serialization
DataContractJsonSerializerImpl ( Type type, IEnumerable knownTypes ) : System.Runtime.Serialization
DataContractJsonSerializerImpl ( Type type, XmlDictionaryString rootName, IEnumerable knownTypes ) : System.Runtime.Serialization
IsStartObject ( XmlDictionaryReader reader ) : bool
IsStartObject ( XmlReader reader ) : bool
ReadObject ( Stream stream ) : object
ReadObject ( XmlDictionaryReader reader ) : object
ReadObject ( XmlDictionaryReader reader, bool verifyObjectName ) : object
ReadObject ( XmlReader reader ) : object
ReadObject ( XmlReader reader, bool verifyObjectName ) : object
WriteEndObject ( XmlDictionaryWriter writer ) : void
WriteEndObject ( XmlWriter writer ) : void
WriteObject ( Stream stream, object graph ) : void
WriteObject ( XmlDictionaryWriter writer, object graph ) : void
WriteObject ( XmlWriter writer, object graph ) : void
WriteObjectContent ( XmlDictionaryWriter writer, object graph ) : void
WriteObjectContent ( XmlWriter writer, object graph ) : void
WriteStartObject ( XmlDictionaryWriter writer, object graph ) : void
WriteStartObject ( XmlWriter writer, object graph ) : void

비공개 메소드들

메소드 설명
AddCollectionItemTypeToKnownTypes ( Type knownType ) : void
CheckIfJsonNameRequiresMapping ( XmlDictionaryString jsonName ) : bool
CheckIfJsonNameRequiresMapping ( string jsonName ) : bool
CheckIfTypeIsReference ( System.Runtime.Serialization.DataContract dataContract ) : void
CheckIfXmlNameRequiresMapping ( XmlDictionaryString xmlName ) : bool
CheckIfXmlNameRequiresMapping ( string xmlName ) : bool
ConvertXmlNameToJsonName ( XmlDictionaryString xmlName ) : XmlDictionaryString
ConvertXmlNameToJsonName ( string xmlName ) : string
DataContractJsonSerializerImpl ( Type type, XmlDictionaryString rootName, IEnumerable knownTypes, int maxItemsInObjectGraph, bool ignoreExtensionDataObject, bool alwaysEmitTypeInformation ) : System.Runtime.Serialization
GetDataContract ( System.Runtime.Serialization.DataContract declaredTypeContract, Type declaredType, Type objectType ) : System.Runtime.Serialization.DataContract
GetDeserializeType ( ) : Type
GetSerializeType ( object graph ) : Type
Initialize ( Type type, IEnumerable knownTypes, int maxItemsInObjectGraph, bool ignoreExtensionDataObject, EmitTypeInformation emitTypeInformation, bool serializeReadOnlyTypes, DateTimeFormat dateTimeFormat, bool useSimpleDictionaryFormat ) : void
Initialize ( Type type, XmlDictionaryString rootName, IEnumerable knownTypes, int maxItemsInObjectGraph, bool ignoreExtensionDataObject, EmitTypeInformation emitTypeInformation, bool serializeReadOnlyTypes, DateTimeFormat dateTimeFormat, bool useSimpleDictionaryFormat ) : void
InternalIsStartObject ( System.Runtime.Serialization.XmlReaderDelegator reader ) : bool
InternalReadObject ( System.Runtime.Serialization.XmlReaderDelegator xmlReader, bool verifyObjectName ) : object
InternalWriteEndObject ( System.Runtime.Serialization.XmlWriterDelegator writer ) : void
InternalWriteObject ( System.Runtime.Serialization.XmlWriterDelegator writer, object graph ) : void
InternalWriteObjectContent ( System.Runtime.Serialization.XmlWriterDelegator writer, object graph ) : void
InternalWriteStartObject ( System.Runtime.Serialization.XmlWriterDelegator writer, object graph ) : void
IsJsonLocalName ( System.Runtime.Serialization.XmlReaderDelegator reader, string elementName ) : bool
ReadJsonValue ( System.Runtime.Serialization.DataContract contract, System.Runtime.Serialization.XmlReaderDelegator reader, System.Runtime.Serialization.Json.XmlObjectSerializerReadContextComplexJson context ) : object
WriteJsonNull ( System.Runtime.Serialization.XmlWriterDelegator writer ) : void
WriteJsonValue ( JsonDataContract contract, System.Runtime.Serialization.XmlWriterDelegator writer, object graph, System.Runtime.Serialization.Json.XmlObjectSerializerWriteContextComplexJson context, RuntimeTypeHandle declaredTypeHandle ) : void

메소드 상세

DataContractJsonSerializerImpl() 공개 메소드

public DataContractJsonSerializerImpl ( Type type ) : System.Runtime.Serialization
type System.Type
리턴 System.Runtime.Serialization

DataContractJsonSerializerImpl() 공개 메소드

public DataContractJsonSerializerImpl ( Type type, DataContractJsonSerializerSettings settings ) : System.Runtime.Serialization
type System.Type
settings DataContractJsonSerializerSettings
리턴 System.Runtime.Serialization

DataContractJsonSerializerImpl() 공개 메소드

public DataContractJsonSerializerImpl ( Type type, IEnumerable knownTypes ) : System.Runtime.Serialization
type System.Type
knownTypes IEnumerable
리턴 System.Runtime.Serialization

DataContractJsonSerializerImpl() 공개 메소드

public DataContractJsonSerializerImpl ( Type type, XmlDictionaryString rootName, IEnumerable knownTypes ) : System.Runtime.Serialization
type System.Type
rootName System.Xml.XmlDictionaryString
knownTypes IEnumerable
리턴 System.Runtime.Serialization

IsStartObject() 공개 메소드

public IsStartObject ( XmlDictionaryReader reader ) : bool
reader System.Xml.XmlDictionaryReader
리턴 bool

IsStartObject() 공개 메소드

public IsStartObject ( XmlReader reader ) : bool
reader XmlReader
리턴 bool

ReadObject() 공개 메소드

public ReadObject ( Stream stream ) : object
stream Stream
리턴 object

ReadObject() 공개 메소드

public ReadObject ( XmlDictionaryReader reader ) : object
reader System.Xml.XmlDictionaryReader
리턴 object

ReadObject() 공개 메소드

public ReadObject ( XmlDictionaryReader reader, bool verifyObjectName ) : object
reader System.Xml.XmlDictionaryReader
verifyObjectName bool
리턴 object

ReadObject() 공개 메소드

public ReadObject ( XmlReader reader ) : object
reader XmlReader
리턴 object

ReadObject() 공개 메소드

public ReadObject ( XmlReader reader, bool verifyObjectName ) : object
reader XmlReader
verifyObjectName bool
리턴 object

WriteEndObject() 공개 메소드

public WriteEndObject ( XmlDictionaryWriter writer ) : void
writer System.Xml.XmlDictionaryWriter
리턴 void

WriteEndObject() 공개 메소드

public WriteEndObject ( XmlWriter writer ) : void
writer System.Xml.XmlWriter
리턴 void

WriteObject() 공개 메소드

public WriteObject ( Stream stream, object graph ) : void
stream Stream
graph object
리턴 void

WriteObject() 공개 메소드

public WriteObject ( XmlDictionaryWriter writer, object graph ) : void
writer System.Xml.XmlDictionaryWriter
graph object
리턴 void

WriteObject() 공개 메소드

public WriteObject ( XmlWriter writer, object graph ) : void
writer System.Xml.XmlWriter
graph object
리턴 void

WriteObjectContent() 공개 메소드

public WriteObjectContent ( XmlDictionaryWriter writer, object graph ) : void
writer System.Xml.XmlDictionaryWriter
graph object
리턴 void

WriteObjectContent() 공개 메소드

public WriteObjectContent ( XmlWriter writer, object graph ) : void
writer System.Xml.XmlWriter
graph object
리턴 void

WriteStartObject() 공개 메소드

public WriteStartObject ( XmlDictionaryWriter writer, object graph ) : void
writer System.Xml.XmlDictionaryWriter
graph object
리턴 void

WriteStartObject() 공개 메소드

public WriteStartObject ( XmlWriter writer, object graph ) : void
writer System.Xml.XmlWriter
graph object
리턴 void