CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
ICslaWriter.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.IO;
4
6{
11 public interface ICslaWriter
12 {
19 void Write(Stream serializationStream, List<SerializationInfo> objectData);
20 }
21}
Represents a class that can be used to write a list of SerializationInfo objects into a stream,...
Definition: ICslaWriter.cs:12
void Write(Stream serializationStream, List< SerializationInfo > objectData)
Write a list of SerializationInfo objects into a stream, typically MemoryStream