SerializationInfo.GetUInt16(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
重要
此 API 不符合 CLS 規範。
從 SerializationInfo 存放區擷取 16 位元不帶正負號的整數值。
public:
System::UInt16 GetUInt16(System::String ^ name);
[System.CLSCompliant(false)]
public ushort GetUInt16 (string name);
[<System.CLSCompliant(false)>]
member this.GetUInt16 : string -> uint16
Public Function GetUInt16 (name As String) As UShort
參數
- name
- String
與要擷取的值相關聯的名稱。
傳回
與 name
建立關聯的 16 位元不帶正負號的整數。
- 屬性
例外狀況
name
為 null
。
與 name
相關聯的值無法轉換為 16 位元不帶正負號的整數。
在目前的執行個體中找不到具有指定名稱的項目。
備註
如果值為16位無符號整數,或可以轉換成一個,則會傳回該值;否則, InvalidCastException 會擲回 。 所有轉換都是由 IFormatterConverter 與這個 SerializationInfo相關聯的 來完成。