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.
ICslaReader.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.IO;
3
5{
11 public interface ICslaReader
12 {
18 List<SerializationInfo> Read(Stream serializationStream);
19 }
20}
Represents a reader class that can be used to read the data sent across the wire in byte array format...
Definition: ICslaReader.cs:12
List< SerializationInfo > Read(Stream serializationStream)
Read the data from a stream and return a list of SerializationInfo objects