BTDB.EventStore2Layer.EventDeserializer.DescriptorOf C# (CSharp) Method

DescriptorOf() public method

public DescriptorOf ( Type type ) : ITypeDescriptor
type System.Type
return ITypeDescriptor
        public ITypeDescriptor DescriptorOf(Type type)
        {
            DeserializerTypeInfo info;
            if (!_typeOrDescriptor2Info.TryGetValue(type, out info))
                return null;
            return info.Descriptor;
        }

Same methods

EventDeserializer::DescriptorOf ( object obj ) : ITypeDescriptor