本文整理汇总了C#中IDecoder.ReadMap方法的典型用法代码示例。如果您正苦于以下问题:C# IDecoder.ReadMap方法的具体用法?C# IDecoder.ReadMap怎么用?C# IDecoder.ReadMap使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IDecoder
的用法示例。
在下文中一共展示了IDecoder.ReadMap方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SchemaArgument
public SchemaArgument(IDecoder dec, bool methodArg)
{
Dictionary<string, Object> map = dec.ReadMap() ;
base.PopulateData(map) ;
if (map.ContainsKey("dir")) {
Direction = (string) map["dir"] ;
}
}
示例2: SchemaStatistic
public SchemaStatistic(IDecoder dec)
{
Dictionary<string, Object> map = dec.ReadMap() ;
Name = (string) map["name"] ;
Type = (short) short.Parse(""+map["type"]) ;
if (map.ContainsKey("unit")) {
Unit = (string) map["unit"] ;
}
if (map.ContainsKey("description")) {
Description = (string) map["description"] ;
}
}
示例3: SchemaProperty
public SchemaProperty(IDecoder dec)
{
Dictionary<string, Object> map = dec.ReadMap() ;
base.PopulateData(map) ;
Name = (string) map["name"] ;
if (map.ContainsKey("optional")) {
//System.Console.WriteLine("optional") ;
Optional = (int)map["optional"] != 0 ;
}
if (map.ContainsKey("index")) {
//System.Console.WriteLine("index") ;
Index = (int)map["index"] != 0 ;
}
if (map.ContainsKey("access")) {
//System.Console.WriteLine("access") ;
Access = (int) map["access"] ;
}
}
示例4: SchemaMethod
public SchemaMethod(IDecoder dec)
{
Dictionary<string, Object> map = dec.ReadMap() ;
Name = (string) map["name"] ;
ArgCount = (int) map["argCount"] ;
if (map.ContainsKey("desc")) {
Description = (string) map["desc"] ;
}
for (int x = 0 ; x < ArgCount ; x++) {
SchemaArgument arg = new SchemaArgument(dec, true) ;
Arguments.Add(arg) ;
if (arg.IsInput()) {
InputArgCount += 1 ;
}
if (arg.IsOutput()) {
OutputArgCount += 1 ;
}
if (arg.IsBidirectional()) {
BidirectionalArgCount += 1 ;
}
}
}
示例5: DecodeValue
public object DecodeValue(IDecoder dec, short type) {
switch (type) {
case 1: return dec.ReadUint8() ; // U8
case 2: return dec.ReadUint16() ; // U16
case 3: return dec.ReadUint32() ; // U32
case 4: return dec.ReadUint64() ; // U64
case 6: return dec.ReadStr8() ; // SSTR
case 7: return dec.ReadStr16() ; // LSTR
case 8: return dec.ReadDatetime() ; // ABSTIME
case 9: return dec.ReadUint32() ; // DELTATIME
case 10: return new ObjectID(dec) ; // ref
case 11: return dec.ReadUint8() != 0 ; // bool
case 12: return dec.ReadFloat() ; // float
case 13: return dec.ReadDouble() ; // double
case 14: return dec.ReadUuid() ; // UUID
case 15: return dec.ReadMap() ; // Ftable
case 16: return dec.ReadInt8() ; // int8
case 17: return dec.ReadInt16() ; // int16
case 18: return dec.ReadInt32() ; // int32
case 19: return dec.ReadInt64() ; // int64
case 20: // Object
// Peek into the inner type code, make sure
// it is actually an object
object returnValue = null ;
short innerTypeCode = dec.ReadUint8() ;
if (innerTypeCode != 20) {
returnValue = this.DecodeValue(dec, innerTypeCode) ;
}
else {
ClassKey classKey = new ClassKey(dec) ;
lock(LockObject) {
SchemaClass sClass = GetSchema(classKey) ;
if (sClass != null) {
returnValue = this.CreateQMFObject(sClass, dec, true, true, false) ;
}
}
}
return returnValue;
case 21: // List
{
MSDecoder lDec = new MSDecoder();
lDec.Init(new MemoryStream(dec.ReadVbin32()));
long count = lDec.ReadUint32();
List<object> newList = new List<object>();
while (count > 0)
{
short innerType = lDec.ReadUint8();
newList.Add(this.DecodeValue(lDec, innerType));
count -= 1;
}
return newList;
}
case 22: // Array
{
MSDecoder aDec = new MSDecoder();
aDec.Init(new MemoryStream(dec.ReadVbin32()));
long cnt = aDec.ReadUint32();
short innerType = aDec.ReadUint8();
List<object> aList = new List<object>();
while (cnt > 0)
{
aList.Add(this.DecodeValue(aDec, innerType));
cnt -= 1;
}
return aList;
}
default:
throw new Exception(String.Format("Invalid Type Code: {0}", type)) ;
}
}