C# 클래스 TSystems.RELOAD.Storage.StoredDataValue

The protocol currently defines the following data models: o single value o array o dictionary These are represented with the StoredDataValue structure. The actual dataModel is known from the kind being stored. RELOAD base -13 p.83 --alex
파일 보기 프로젝트 열기: RELOAD-NET/RELOAD.NET 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
array_entry ArrayEntry
dictionary_entry DictionaryEntry
single_value_entry DataValue

공개 메소드들

메소드 설명
Dump ( BinaryWriter writer ) : UInt32

This method just serializes itself depended of the data model of the contained Usage data.

single_value: writes exists value

array_entry : writes exits and index values

dictionary : writes exits and key values

StoredDataValue ( IUsage value, System.Boolean exists ) : System

This private Constructor creates instances of StoredDataValue, that carray a single_value_entry

StoredDataValue ( UInt32 index, IUsage value, System.Boolean exists ) : System

This private Constructor creates instances of StoredDataValue, that carray a array_entry

StoredDataValue ( string key, IUsage value, System.Boolean exists ) : System

This Constructor creates instances of StoredDataValue, that carray a dictionary_entry

비공개 메소드들

메소드 설명
createDataValue ( IUsage value, System.Boolean exists ) : DataValue

메소드 상세

Dump() 공개 메소드

This method just serializes itself depended of the data model of the contained Usage data.

single_value: writes exists value

array_entry : writes exits and index values

dictionary : writes exits and key values

public Dump ( BinaryWriter writer ) : UInt32
writer System.IO.BinaryWriter
리턴 System.UInt32

StoredDataValue() 공개 메소드

This private Constructor creates instances of StoredDataValue, that carray a single_value_entry
public StoredDataValue ( IUsage value, System.Boolean exists ) : System
value IUsage
exists System.Boolean
리턴 System

StoredDataValue() 공개 메소드

This private Constructor creates instances of StoredDataValue, that carray a array_entry
public StoredDataValue ( UInt32 index, IUsage value, System.Boolean exists ) : System
index System.UInt32
value IUsage
exists System.Boolean
리턴 System

StoredDataValue() 공개 메소드

This Constructor creates instances of StoredDataValue, that carray a dictionary_entry
public StoredDataValue ( string key, IUsage value, System.Boolean exists ) : System
key string
value IUsage
exists System.Boolean
리턴 System

프로퍼티 상세

array_entry 공개적으로 프로퍼티

public ArrayEntry,TSystems.RELOAD.Storage array_entry
리턴 ArrayEntry

dictionary_entry 공개적으로 프로퍼티

public DictionaryEntry,TSystems.RELOAD.Storage dictionary_entry
리턴 DictionaryEntry

single_value_entry 공개적으로 프로퍼티

public DataValue,TSystems.RELOAD.Storage single_value_entry
리턴 DataValue