SerializationInfo.FullTypeName 属性

获取或设置要序列化的 Type 的全名。

**命名空间:**System.Runtime.Serialization
**程序集:**mscorlib(在 mscorlib.dll 中)

语法

声明
Public Property FullTypeName As String
用法
Dim instance As SerializationInfo
Dim value As String

value = instance.FullTypeName

instance.FullTypeName = value
public string FullTypeName { get; set; }
public:
property String^ FullTypeName {
    String^ get ();
    void set (String^ value);
}
/** @property */
public String get_FullTypeName ()

/** @property */
public void set_FullTypeName (String value)
public function get FullTypeName () : String

public function set FullTypeName (value : String)

属性值

要序列化的类型的全名。

异常

异常类型 条件

ArgumentNullException

此属性的设置值为 空引用(在 Visual Basic 中为 Nothing)。

备注

FullTypeName 与对 Type 调用 FullName 所返回的类型名称相同。它是格式化程序在序列化该对象的类型信息时所使用的类型名称。

正在更改要序列化的类型(例如,为特定类型发送代理)的用户将希望设置此属性的值。

警告

不要在反序列化期间使用此属性,因为此属性的值未定义。

平台

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 命名空间