Blaze.Server.TdfMap.TdfMap C# (CSharp) Method

TdfMap() public method

public TdfMap ( string label, TdfBaseType keyType, TdfBaseType valueType, object>.Dictionary map ) : System
label string
keyType TdfBaseType
valueType TdfBaseType
map object>.Dictionary
return System
        public TdfMap(string label, TdfBaseType keyType, TdfBaseType valueType, Dictionary<object, object> map)
        {
            this.Label = label;
            this.Type = TdfBaseType.Map;

            this.KeyType = keyType;
            this.ValueType = valueType;

            this.Map = map;
        }
    }
TdfMap