OutputCache.Serialize(Stream, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Serializes output-cache data into binary data.
public:
static void Serialize(System::IO::Stream ^ stream, System::Object ^ data);
public static void Serialize (System.IO.Stream stream, object data);
static member Serialize : System.IO.Stream * obj -> unit
Public Shared Sub Serialize (stream As Stream, data As Object)
Parameters
- stream
- Stream
The object to contain the serialized binary data.
- data
- Object
The output-cache data to serialize.
Exceptions
data
is not one of the specified output-cache types.
data
is null
or stream
is null
.
Remarks
This method is used by output-cache providers that are operating under partial trust.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.