C# 클래스 Habanero.BO.DataStoreInMemoryXmlWriter

Writes the contents of a DataStoreInMemory to an xml stream
파일 보기 프로젝트 열기: Chillisoft/habanero 1 사용 예제들

공개 메소드들

메소드 설명
DataStoreInMemoryXmlWriter ( ) : System

Default constructor - ConformanceLevel = Auto.

DataStoreInMemoryXmlWriter ( XmlWriterSettings xmlWriterSettings ) : System

Constructor - set your own XmlWriterSettings

Write ( Stream stream, DataStoreInMemory dataStore ) : void

Writes the data store's objects to the stream.

Write ( Stream stream, IBusinessObject>.IDictionary businessObjects ) : void

Writes the dictionary of business objects (only the actual bos) to the stream

Write ( StringBuilder s, DataStoreInMemory dataStore ) : void

Writes the datastore's objects to a StringBuilder

Write ( XmlWriter writer, IBusinessObject>.IDictionary businessObjects, bool includeStartDocument = true ) : void

Writes the businessobjects to the writer.

메소드 상세

DataStoreInMemoryXmlWriter() 공개 메소드

Default constructor - ConformanceLevel = Auto.
public DataStoreInMemoryXmlWriter ( ) : System
리턴 System

DataStoreInMemoryXmlWriter() 공개 메소드

Constructor - set your own XmlWriterSettings
public DataStoreInMemoryXmlWriter ( XmlWriterSettings xmlWriterSettings ) : System
xmlWriterSettings System.Xml.XmlWriterSettings
리턴 System

Write() 공개 메소드

Writes the data store's objects to the stream.
public Write ( Stream stream, DataStoreInMemory dataStore ) : void
stream Stream
dataStore DataStoreInMemory
리턴 void

Write() 공개 메소드

Writes the dictionary of business objects (only the actual bos) to the stream
public Write ( Stream stream, IBusinessObject>.IDictionary businessObjects ) : void
stream Stream
businessObjects IBusinessObject>.IDictionary
리턴 void

Write() 공개 메소드

Writes the datastore's objects to a StringBuilder
public Write ( StringBuilder s, DataStoreInMemory dataStore ) : void
s StringBuilder
dataStore DataStoreInMemory
리턴 void

Write() 공개 메소드

Writes the businessobjects to the writer.
public Write ( XmlWriter writer, IBusinessObject>.IDictionary businessObjects, bool includeStartDocument = true ) : void
writer System.Xml.XmlWriter
businessObjects IBusinessObject>.IDictionary
includeStartDocument bool If true, starts a new xml doc and will close the writer /// after completion. If false, will act as if the write already has a doc started /// (ie, won't add the startdoc element or close the writer). Defaults to true
리턴 void