C# 클래스 Summer.Batch.Common.Util.DefaultPropertiesPersister

Default implementation of the IPropertiesPersister interface. Follows the standard key=value parsing.
상속: IPropertiesPersister
파일 보기 프로젝트 열기: SummerBatch/SummerBatch

공개 메소드들

메소드 설명
Load ( NameValueCollection properties, TextReader reader ) : void

Load properties from a text reader.

Store ( NameValueCollection properties, TextWriter writer ) : void

Writes properties to a text writer.

메소드 상세

Load() 공개 메소드

Load properties from a text reader.
 in case of I/O errors
public Load ( NameValueCollection properties, TextReader reader ) : void
properties System.Collections.Specialized.NameValueCollection The where to store the properties.
reader System.IO.TextReader The to read the properties from.
리턴 void

Store() 공개 메소드

Writes properties to a text writer.
 in case of I/O errors
public Store ( NameValueCollection properties, TextWriter writer ) : void
properties System.Collections.Specialized.NameValueCollection The properties to write.
writer System.IO.TextWriter The to write the properties to.
리턴 void