LosFormatter Class

Definition

Serializes the view state for a Web Forms page. This class cannot be inherited.

public ref class LosFormatter sealed
public sealed class LosFormatter
type LosFormatter = class
Public NotInheritable Class LosFormatter
Inheritance
LosFormatter

Remarks

Warning

LosFormatter is insecure and can't be made secure. For more information, see the BinaryFormatter security guide.

The limited object serialization (LOS) formatter is designed for highly compact ASCII format serialization. This class supports serializing any object graph, but is optimized for those containing strings, arrays, and hash tables. It offers second order optimization for many of the .NET Framework primitive types.

This is a private format and remains consistent only for the lifetime of a Web request.

Constructors

LosFormatter()

Initializes a new instance of the LosFormatter class using default values.

LosFormatter(Boolean, Byte[])

Initializes a new instance of the LosFormatter class using the specified enable flag and machine authentication code (MAC) key modifier.

LosFormatter(Boolean, String)

Initializes a new instance of the LosFormatter class using the specified enable flag and machine authentication code (MAC) key modifier.

Methods

Deserialize(Stream)

Transforms the view-state value contained in a Stream object to a limited object serialization (LOS)-formatted object.

Deserialize(String)

Transforms the specified view-state value to a limited object serialization (LOS)-formatted object.

Deserialize(TextReader)

Transforms the view-state value contained in a TextReader object to a limited object serialization (LOS)-formatted object.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
Serialize(Stream, Object)

Transforms a limited object serialization (LOS)-formatted object into a view-state value and places the results into a Stream object.

Serialize(TextWriter, Object)

Transforms a limited object serialization (LOS)-formatted object into a view-state value and places the results into a TextWriter object.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to