BTDB.FieldHandler.DictionaryFieldHandler.HandledType C# (CSharp) Method

HandledType() public method

public HandledType ( ) : Type
return System.Type
        public Type HandledType()
        {
            return _type ?? (_type = typeof(IDictionary<,>).MakeGenericType(_keysHandler.HandledType(), _valuesHandler.HandledType()));
        }