BaseTransport.Name
BaseTransport
See also
Specifies the name of the messenger object.
[C++]
void setName(char* Value);
char* getName();
[Pascal]
property Name : string;
[VB6]
Property Name As String
[ActiveX]
HRESULT _stdcall Name([in] BSTR Value );
HRESULT _stdcall Name([out, retval] BSTR * Value );
[C#]
public string Name;
[VB.NET]
Public Property TransportName As String
[Java]
public void setName(string value);
public string getName();
[Java ME]
public void setName(string name);
public string getName();
[Palm]
not applicable;
[DLL]
void __stdcall MCBaseTransportSetName(HMCBaseTransport h, char* value);
char* __stdcall MCBaseTransportGetName(HMCBaseTransport h);
- h - handle to the object that was returned by Create method
Use this property to name a property. The name is used when sending messages to recipients. See more about name in Addressing topic.
|