FormatterServices Class

Definition

Caution

Formatter-based serialization is obsolete and should not be used.

Provides static methods to aid with the implementation of a Formatter for serialization. This class cannot be inherited.

public ref class FormatterServices abstract sealed
public ref class FormatterServices sealed
public static class FormatterServices
[System.Obsolete("Formatter-based serialization is obsolete and should not be used.", DiagnosticId="SYSLIB0050", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public static class FormatterServices
public sealed class FormatterServices
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class FormatterServices
[System.Runtime.InteropServices.ComVisible(true)]
public static class FormatterServices
type FormatterServices = class
[<System.Obsolete("Formatter-based serialization is obsolete and should not be used.", DiagnosticId="SYSLIB0050", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
type FormatterServices = class
[<System.Runtime.InteropServices.ComVisible(true)>]
type FormatterServices = class
Public Class FormatterServices
Public NotInheritable Class FormatterServices
Inheritance
FormatterServices
Attributes

Methods

CheckTypeSecurity(Type, TypeFilterLevel)

Determines whether the specified Type can be deserialized with the TypeFilterLevel property set to Low.

GetObjectData(Object, MemberInfo[])

Extracts the data from the specified object and returns it as an array of objects.

GetSafeUninitializedObject(Type)

Creates a new instance of the specified object type.

GetSerializableMembers(Type)

Gets all the serializable members for a class of the specified Type.

GetSerializableMembers(Type, StreamingContext)

Gets all the serializable members for a class of the specified Type and in the provided StreamingContext.

GetSurrogateForCyclicalReference(ISerializationSurrogate)

Returns a serialization surrogate for the specified ISerializationSurrogate.

GetTypeFromAssembly(Assembly, String)

Looks up the Type of the specified object in the provided Assembly.

GetUninitializedObject(Type)

Creates a new instance of the specified object type.

PopulateObjectMembers(Object, MemberInfo[], Object[])

Populates the specified object with values for each field drawn from the data array of objects.

Applies to

See also