SerializationInfo.GetUInt64(String) 方法

定义

重要

此 API 不符合 CLS。

SerializationInfo 存储中检索一个 64 位无符号整数值。

public:
 System::UInt64 GetUInt64(System::String ^ name);
[System.CLSCompliant(false)]
public ulong GetUInt64 (string name);
[<System.CLSCompliant(false)>]
member this.GetUInt64 : string -> uint64
Public Function GetUInt64 (name As String) As ULong

参数

name
String

与要检索的值关联的名称。

返回

name 关联的 64 位无符号整数。

属性

例外

namenull

name 关联的值不能转换为 64 位无符号整数。

当前实例中没有找到具有指定名称的元素。

注解

如果值是 64 位无符号整数,或者可以转换为 1,则返回该值;否则, InvalidCastException 将引发 。 所有转换都由 IFormatterConverter 与此 SerializationInfo关联的 完成。

适用于