public interface ISerializer
Serialization interface that supports serialize and deserialize methods.
Namespace
Google.ApisAssembly
Google.Apis.Core.dll
Properties
Format
string Format { get; }
Gets the application format this serializer supports (e.g. "json", "xml", etc.).
Methods
Deserialize(String, Type)
object
Deserialize
(
string
input
,
Type
type
)
Deserializes the string into an object.
Deserialize<T>(Stream)
T Deserialize<T>(Stream input)
Deserializes the stream into an object.
Returns
Type
Description
T
Type Parameter
Name
Description
T
Deserialize<T>(String)
T Deserialize<T>(string input)
Deserializes the string into an object.
Returns
Type
Description
T
Type Parameter
Name
Description
T
Serialize(Object)
string Serialize(object obj)
Serializes the specified object into a string.
Serialize(Object, Stream)
void Serialize(object obj, Stream target)
Serializes the specified object into a Stream.

