SerializationInfo.GetBoolean(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从 SerializationInfo 存储中检索一个布尔值。
public:
bool GetBoolean(System::String ^ name);
public bool GetBoolean (string name);
member this.GetBoolean : string -> bool
Public Function GetBoolean (name As String) As Boolean
参数
- name
- String
与要检索的值关联的名称。
返回
与 name
关联的布尔值。
例外
name
为 null
。
与 name
关联的值不能转换为布尔值。
当前实例中没有找到具有指定名称的元素。
注解
如果值是布尔值,或者可以转换为布尔值,则返回该值;否则,将引发 a InvalidCastException 。 所有转换都由 IFormatterConverter 与此 SerializationInfo关联的操作完成。