BTDB.EventStore2Layer.EventSerializer.DescriptorOf C# (CSharp) Метод

DescriptorOf() публичный Метод

public DescriptorOf ( Type type ) : ITypeDescriptor
type System.Type
Результат ITypeDescriptor
        public ITypeDescriptor DescriptorOf(Type type)
        {
            SerializerTypeInfo info;
            if (!_typeOrDescriptor2Info.TryGetValue(type, out info))
                return null;
            return info.Descriptor;
        }

Same methods

EventSerializer::DescriptorOf ( object obj ) : ITypeDescriptor