ToolboxItem.ValidatePropertyType(String, Object, Type, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
验证对象是否属于给定类型。
protected:
void ValidatePropertyType(System::String ^ propertyName, System::Object ^ value, Type ^ expectedType, bool allowNull);
protected void ValidatePropertyType (string propertyName, object value, Type expectedType, bool allowNull);
protected void ValidatePropertyType (string propertyName, object? value, Type expectedType, bool allowNull);
member this.ValidatePropertyType : string * obj * Type * bool -> unit
Protected Sub ValidatePropertyType (propertyName As String, value As Object, expectedType As Type, allowNull As Boolean)
参数
- propertyName
- String
要验证的属性的名称。
- value
- Object
要根据其进行验证的可选值。
- expectedType
- Type
属性的期望类型。
- allowNull
- Boolean
如果允许为 true
,则为 null
;否则为 false
。
例外
value
为 null
且 allowNull
为 false
。
value
不是 expectedType
所指定的类型。
注解
方法 ValidatePropertyType 作为 方法的帮助程序方法 ValidatePropertyValue 调用。