Microsoft.Web.Administration.ConfigurationAttributeSchema.CheckType C# (CSharp) Method

CheckType() public method

public CheckType ( object value ) : object
value object
return object
        public object CheckType(object value)
        {
            var result = this.CheckRawType(value);
            Validate(result);
            return result;
        }