NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlString.FromBoolean

Converts a boolean to a string.

[Visual Basic]
Public Shared Function FromBoolean( _
   ByVal value As Boolean _
) As String
[C#]
public static string FromBoolean(
   bool value
);
[C++]
public: static String* FromBoolean(
   bool value
);
[JScript]
public static function FromBoolean(
   value : Boolean
) : String;

Parameters

value
The boolean value to convert.

Return Value

"true" if value is true, "false" if value is false.

See Also

XmlString Class | XmlString Members | System.Xml Namespace | ToBoolean