GetProvider() private method

private GetProvider ( Type type ) : TypeDescriptionProvider
type System.Type
return TypeDescriptionProvider
Beispiel #1
0
        public static void Add(Type type)
        {
            TypeDescriptionProvider parent = TypeDescriptor.GetProvider(type);

            TypeDescriptor.AddProvider(new HyperTypeDescriptionProvider(parent), type);
        }
Beispiel #2
0
 public HyperTypeDescriptionProvider(Type type)
     : this(TypeDescriptor.GetProvider(type))
 {
 }