Soap.GetEncodedStringFromBoolean Method

When overridden in a derived class gets the encoded string for the Boolean value passed as a parameter.

Namespace: Microsoft.Web.Services3
Assembly: Microsoft.Web.Services3 (in microsoft.web.services3.dll)

Usage

'Usage
Public Class soapImplementation
    Inherits Soap
        Protected Overrides Function GetEncodedStringFromBoolean(value As Boolean)
        End Function
End Class

Syntax

'Declaration
Protected MustOverride Function GetEncodedStringFromBoolean( _
    ByVal value As Boolean _
) As String
protected abstract string GetEncodedStringFromBoolean(
    bool value
);
protected:
virtual String^ GetEncodedStringFromBoolean(
    bool value
) abstract;
protected abstract System.String GetEncodedStringFromBoolean(
    boolean value
);
protected abstract function GetEncodedStringFromBoolean(
     value : Boolean
) : String;

Parameters

  • value

Return Value

A System.String object that contains the encoded string for the Boolean value.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server

Target Platforms

See Also

Reference

Soap Class
Soap Members
Microsoft.Web.Services3 Namespace