 | WrapJsonSerializerProxySerializeT Method (JsonWriter, T) |
Note: This is preliminary documentation provided only as a preview, and is subject to change. Please contact the author for pricing and licensing information.
Serializes an object using the provided JsonWriter.
Namespace: ETradeNetAssembly: ETradeNet.Core (in ETradeNet.Core.dll) Version: 1.0.5793.41163
Syntaxprotected override void Serialize<T>(
JsonWriter jsonWriter,
T obj
)
where T : class
Protected Overrides Sub Serialize(Of T As Class) (
jsonWriter As JsonWriter,
obj As T
)
protected:
generic<typename T>
where T : ref class
virtual void Serialize(
JsonWriter^ jsonWriter,
T obj
) override
abstract Serialize :
jsonWriter : JsonWriter *
obj : 'T -> unit when 'T : not struct
override Serialize :
jsonWriter : JsonWriter *
obj : 'T -> unit when 'T : not struct
Parameters
- jsonWriter
- Type: JsonWriter
The writer. - obj
- Type: T
The object to serialize.
Type Parameters
- T
- The type of obj.
See Also