NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

LosFormatter Class

Limited Object Serialization Formatter

Specific purpose serialized designed for highly compact ASCII format serialization. This is used internally by Web Forms to serialize view state. Although this does support serializing any object graph, it is optimized for graphs containing Strings, Arrays, and Hashtables. It has second order optimizations for many of the NGWS runtime intrinsic types.

This is a private format, and only needs to remain consistent for the lifetime of a web request. You are not allowed to persist objects serialized with this formatter for any significant length of time.

Microsoft reserves the right to make any modifications to this format in the future.

General usage: LosFormatter losf = new LosFormatter(); losf.Serialize(output, propertyData);

Object
   LosFormatter

[Visual Basic]
Public Class LosFormatter
[C#]
public class LosFormatter
[C++]
public __gc class LosFormatter
[JScript]
public class LosFormatter

Remarks

[To be supplied.]

Requirements

Namespace: System.Web.UI

Assembly: System.Web.dll

See Also

LosFormatter Members | System.Web.UI Namespace