CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
CslaReaderWriterFactory.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Runtime.Serialization;
4
6{
11 public static class CslaReaderWriterFactory
12 {
13 internal static Type ReaderType { get; set; } = typeof(CslaBinaryReader);
14 internal static Type WriterType { get; set; } = typeof(CslaBinaryWriter);
15
21 public static DataContractSerializer GetDataContractSerializer()
22 {
23 return new DataContractSerializer(
24 typeof(List<SerializationInfo>),
25 new Type[] { typeof(List<int>), typeof(byte[]), typeof(DateTimeOffset), typeof(char[]) });
26 }
27
33 public static ICslaWriter GetCslaWriter(ApplicationContext applicationContext)
34 {
35 return (ICslaWriter)applicationContext.CreateInstanceDI(WriterType);
36 }
37
43 public static ICslaReader GetCslaReader(ApplicationContext applicationContext)
44 {
45 return (ICslaReader)applicationContext.CreateInstanceDI(ReaderType);
46 }
47 }
48}