[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-04 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eISerializer\u003c/code\u003e interface in the \u003ccode\u003eGoogle.Apis\u003c/code\u003e namespace supports serialization and deserialization methods for objects.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eFormat\u003c/code\u003e property gets the application format the serializer supports, such as "json" or "xml".\u003c/p\u003e\n"],["\u003cp\u003eThe interface provides methods to deserialize from a string or a stream into an object using \u003ccode\u003eDeserialize(string, Type)\u003c/code\u003e, \u003ccode\u003eDeserialize<T>(Stream)\u003c/code\u003e, and \u003ccode\u003eDeserialize<T>(string)\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eIt offers methods to serialize an object into a string or a stream using \u003ccode\u003eSerialize(object)\u003c/code\u003e and \u003ccode\u003eSerialize(object, Stream)\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe latest version available for the \u003ccode\u003eISerializer\u003c/code\u003e interface is 1.69.0.\u003c/p\u003e\n"]]],[],null,["# Interface ISerializer (1.69.0)\n\nVersion latestkeyboard_arrow_down\n\n- [1.69.0 (latest)](/dotnet/docs/reference/Google.Apis/latest/Google.Apis.ISerializer)\n- [1.68.0](/dotnet/docs/reference/Google.Apis/1.68.0/Google.Apis.ISerializer)\n- [1.60.0](/dotnet/docs/reference/Google.Apis/1.60.0/Google.Apis.ISerializer)\n- [1.59.0](/dotnet/docs/reference/Google.Apis/1.59.0/Google.Apis.ISerializer)\n- [1.55.0](/dotnet/docs/reference/Google.Apis/1.55.0/Google.Apis.ISerializer)\n- [1.50.0](/dotnet/docs/reference/Google.Apis/1.50.0/Google.Apis.ISerializer) \n\n public interface ISerializer\n\nSerialization interface that supports serialize and deserialize methods.\n\nNamespace\n---------\n\n[Google.Apis](/dotnet/docs/reference/Google.Apis/latest/Google.Apis)\n\nAssembly\n--------\n\nGoogle.Apis.Core.dll\n\nProperties\n----------\n\n### Format\n\n string Format { get; }\n\nGets the application format this serializer supports (e.g. \"json\", \"xml\", etc.).\n\nMethods\n-------\n\n### Deserialize(string, Type)\n\n object Deserialize(string input, Type type)\n\nDeserializes the string into an object.\n\n### Deserialize\\\u003cT\\\u003e(Stream)\n\n T Deserialize\u003cT\u003e(Stream input)\n\nDeserializes the stream into an object.\n\n### Deserialize\\\u003cT\\\u003e(string)\n\n T Deserialize\u003cT\u003e(string input)\n\nDeserializes the string into an object.\n\n### Serialize(object)\n\n string Serialize(object obj)\n\nSerializes the specified object into a string.\n\n### Serialize(object, Stream)\n\n void Serialize(object obj, Stream target)\n\nSerializes the specified object into a Stream.\n\nExtension Method\n----------------\n\n[Utilities.ThrowIfNull\\\u003cT\\\u003e(T, string)](/dotnet/docs/reference/Google.Apis/latest/Google.Apis.Util.Utilities#Google_Apis_Util_Utilities_ThrowIfNull__1___0_System_String_)"]]