XamlType.LookupIsNullable 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回值,這個值表示此 XamlType 是否代表符合 XAML 定義之可為 Null 的型別。
protected:
virtual bool LookupIsNullable();
protected virtual bool LookupIsNullable ();
abstract member LookupIsNullable : unit -> bool
override this.LookupIsNullable : unit -> bool
Protected Overridable Function LookupIsNullable () As Boolean
傳回
如果此 XamlType 表示可為 Null 的型別則為 true
,否則為 false
。
備註
呼叫 即可叫 IsNullable 用這個方法。
預設實作會根據 CLR 核心程式庫可為 Null 的概念進行判斷,並針對 UnderlyingType 檢查。 如果是 null UnderlyingType ,它會傳 true
回 。
如果您想要 IsNullable 使用不同的邏輯,請覆寫此方法。