메소드 | 설명 | |
---|---|---|
DataContractAmfSerializer ( |
Initializes a new instance of the DataContractAmfSerializer class to serialize or deserialize an object of the specified type.
|
|
DataContractAmfSerializer ( |
Initializes a new instance of the DataContractAmfSerializer class to serialize or deserialize an object of the specified type.
|
|
DataContractAmfSerializer ( |
Initializes a new instance of the DataContractAmfSerializer class to serialize or deserialize an object of the specified type, and a collection of known types that may be present in the object graph.
|
|
DataContractAmfSerializer ( |
Initializes a new instance of the DataContractAmfSerializer class to serialize or deserialize an object of the specified type, and a collection of known types that may be present in the object graph.
|
|
IsStartObject ( |
Gets a value that specifies whether the XmlDictionaryReader is positioned over an AMFX element that represents an object the serializer can deserialize from.
|
|
IsStartObject ( XmlReader reader ) : bool |
Gets a value that specifies whether the XmlReader is positioned over an AMFX element that represents an object the serializer can deserialize from.
|
|
ReadObject ( Stream stream ) : object |
Reads a document stream in the AMF (Action Message Format) format and returns the deserialized object.
|
|
ReadObject ( |
Reads the XML document mapped from AMFX (Action Message Format in XML) with an XmlDictionaryReader and returns the deserialized object.
|
|
ReadObject ( |
Reads the AMFX document mapped from AMF with an XmlDictionaryReader and returns the deserialized object; it also enables you to specify whether the serializer should verify that it is positioned on an appropriate element before attempting to deserialize.
|
|
ReadObject ( XmlReader reader ) : object |
Reads the XML document mapped from AMFX (Action Message Format in XML) with an XmlReader and returns the deserialized object.
|
|
ReadObject ( XmlReader reader, bool verifyObjectName ) : object |
Reads the AMFX document mapped from AMF with an XmlReader and returns the deserialized object; it also enables you to specify whether the serializer should verify that it is positioned on an appropriate element before attempting to deserialize.
|
|
ReadObject ( Stream stream, |
Reads a document stream in the AMF (Action Message Format) format and writes it in the AMFX (Action Message Format in XML) format,
|
|
WriteEndObject ( |
||
WriteEndObject ( |
||
WriteObject ( Stream stream, XmlReader input ) : void |
Reads a specified Action Message Format in XML (AMFX) data and writes the resulting AMF data to a stream.
|
|
WriteObject ( Stream stream, object graph ) : void |
Serializes a specified object to Action Message Format (AMF) data and writes the resulting AMF to a stream.
|
|
WriteObject ( |
Serializes an object to XML that may be mapped to Action Message Format in XML (AMFX). Writes all the object data, including the starting XML element, content, and closing element, with an XmlWriter.
|
|
WriteObjectContent ( |
Writes the XML content that can be mapped to Action Message Format (AMF) using an XmlDictionaryWriter.
|
|
WriteObjectContent ( |
Writes the XML content that can be mapped to Action Message Format (AMF) using an XmlWriter.
|
|
WriteStartObject ( |
||
WriteStartObject ( |
메소드 | 설명 | |
---|---|---|
CreateDecoder ( |
Create AMF decoder.
|
|
CreateDefaultOptions ( ) : |
Create default AMF encoding options.
|
|
CreateEncoder ( |
Create AMF encoder.
|
|
Deserialize ( XmlReader reader, SerializationContext context ) : object |
Deserialize AMFX data.
|
|
DeserializePacket ( XmlReader reader, SerializationContext context ) : object |
Deserialize an AMFX packet.
|
|
GetAmfxType ( |
Get AMFX type for a CLR type.
|
|
GetEnumValue ( SerializationContext context, |
Get a string representation of the enum value.
|
|
PrepareDataContract ( |
Prepare a data contract.
|
|
PrepareDataContracts ( IEnumerable |
Prepare data contracts.
|
|
ReadArray ( XmlReader reader, SerializationContext context ) : object | ||
ReadByteArray ( XmlReader reader, SerializationContext context ) : byte[] | ||
ReadDate ( XmlReader reader, SerializationContext context ) : System.DateTime | ||
ReadDouble ( XmlReader reader ) : double | ||
ReadInteger ( XmlReader reader ) : int | ||
ReadObject ( XmlReader reader, SerializationContext context ) : object | ||
ReadReference ( XmlReader reader, SerializationContext context ) : object | ||
ReadString ( XmlReader reader, SerializationContext context ) : string | ||
ReadXml ( XmlReader reader, SerializationContext context ) : System.Xml.Linq.XDocument | ||
Serialize ( |
Serialize AMFX data.
|
|
SerializePacket ( |
Serialize an AMFX packet.
|
|
WriteArray ( |
Write an array.
|
|
WriteByteArray ( |
Write a byte array.
|
|
WriteDataContract ( |
Write an object.
|
|
WriteDate ( |
Write a date.
|
|
WriteElement ( |
Write an element.
|
|
WriteEmptyElement ( |
Write an empty element.
|
|
WriteString ( |
Write a string.
|
|
WriteXml ( |
Write an XML.
|
public DataContractAmfSerializer ( |
||
type | A Type that specifies the type of the instances that is serialized or deserialized. | |
리턴 | System |
public DataContractAmfSerializer ( |
||
type | A Type that specifies the type of the instances that is serialized or deserialized. | |
encodingOptions | AMF encoding options. | |
리턴 | System |
public DataContractAmfSerializer ( |
||
type | A Type that specifies the type of the instances that is serialized or deserialized. | |
knownTypes | IEnumerable |
An IEnumerable of Type that contains the types that may be present in the object graph. |
리턴 | System |
public DataContractAmfSerializer ( |
||
type | A Type that specifies the type of the instances that is serialized or deserialized. | |
knownTypes | IEnumerable |
An IEnumerable of Type that contains the types that may be present in the object graph. |
encodingOptions | AMF encoding options. | |
리턴 | System |
public IsStartObject ( |
||
reader | The XmlDictionaryReader used to read the AMFX stream mapped from AMF. | |
리턴 | bool |
public IsStartObject ( XmlReader reader ) : bool | ||
reader | XmlReader | The XmlReader used to read the AMFX stream mapped from AMF. |
리턴 | bool |
public ReadObject ( Stream stream ) : object | ||
stream | Stream | The Stream to be read. |
리턴 | object |
public ReadObject ( |
||
reader | XML reader. | |
리턴 | object |
public ReadObject ( |
||
reader | An XmlDictionaryReader used to read the AMFX document mapped from AMF. | |
verifyObjectName | bool | |
리턴 | object |
public ReadObject ( XmlReader reader ) : object | ||
reader | XmlReader | XML reader. |
리턴 | object |
public ReadObject ( XmlReader reader, bool verifyObjectName ) : object | ||
reader | XmlReader | An XmlReader used to read the AMFX document mapped from AMF. |
verifyObjectName | bool | |
리턴 | object |
public ReadObject ( Stream stream, |
||
stream | Stream | The Stream to be read. |
output | AMFX writer. | |
리턴 | void |
public WriteEndObject ( |
||
writer | ||
리턴 | void |
public WriteEndObject ( |
||
writer | ||
리턴 | void |
public WriteObject ( Stream stream, XmlReader input ) : void | ||
stream | Stream | The Stream to be written. |
input | XmlReader | AMFX reader. |
리턴 | void |
public WriteObject ( Stream stream, object graph ) : void | ||
stream | Stream | The Stream that is written to. |
graph | object | The object that contains the data to write to the stream. |
리턴 | void |
public WriteObject ( |
||
writer | XML writer. | |
graph | object | Object graph. |
리턴 | void |
public WriteObjectContent ( |
||
writer | The XmlDictionaryWriter used to write to. | |
graph | object | The object to write. |
리턴 | void |
public WriteObjectContent ( |
||
writer | The XmlWriter used to write to. | |
graph | object | The object to write. |
리턴 | void |
public WriteStartObject ( |
||
writer | ||
graph | object | |
리턴 | void |
public WriteStartObject ( |
||
writer | ||
graph | object | |
리턴 | void |