SerializationInfo.GetBoolean(String) 方法

定义

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

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

返回

Boolean

name 关联的布尔值。

例外

namenull

name 关联的值不能转换为布尔值。

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

注解

如果值是布尔值,或者可以转换为布尔值,则返回该值;否则,将引发 a InvalidCastException 。 所有转换都由 IFormatterConverter 与此 SerializationInfo关联的操作完成。

适用于