Guard() публичный статический Метод

public static Guard ( Type type ) : void
type System.Type
Результат void
Пример #1
0
        public TableInfo TableInfoForType(Type type)
        {
            PocoDataFactory.Guard(type);
            var pocoDataBuilder = _pocoDatas.Get(type, () => BaseClassFalbackPocoDataBuilder(type));

            return(pocoDataBuilder.BuildTableInfo());
        }
Пример #2
0
        public TableInfo TableInfoForType(Type type)
        {
            PocoDataFactory.Guard(type);
            var pocoDataBuilder = _pocoDatas.Get(type, () => Resolver(type, this));

            return(pocoDataBuilder.BuildTableInfo());
        }