SerializationInfo.GetByte 方法
从 SerializationInfo 存储区中检索一个 8 位无符号整数值。
**命名空间:**System.Runtime.Serialization
**程序集:**mscorlib(在 mscorlib.dll 中)
语法
声明
Public Function GetByte ( _
name As String _
) As Byte
用法
Dim instance As SerializationInfo
Dim name As String
Dim returnValue As Byte
returnValue = instance.GetByte(name)
public byte GetByte (
string name
)
public:
unsigned char GetByte (
String^ name
)
public byte GetByte (
String name
)
public function GetByte (
name : String
) : byte
参数
- name
与要检索的值关联的名称。
返回值
与 name 关联的 8 位无符号整数。
异常
异常类型 | 条件 |
---|---|
name 为 空引用(在 Visual Basic 中为 Nothing)。 |
|
与 name 关联的值不能转换为 8 位无符号整数。 |
|
当前实例中没有找到具有指定名称的元素。 |
备注
如果该值是 8 位无符号整数或者可转换成 8 位无符号整数,则返回该值;否则,将引发 InvalidCastException。所有转换都通过与此 SerializationInfo 关联的 IFormatterConverter 来完成。
平台
Windows 98、Windows 2000 SP4、Windows Millennium Edition、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition
.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求。
版本信息
.NET Framework
受以下版本支持:2.0、1.1、1.0
请参见
参考
SerializationInfo 类
SerializationInfo 成员
System.Runtime.Serialization 命名空间