MMFTransport.MessengerName
MMFTransport
See also
Specifies the name of the memory mapping used to receive messages.
[C++]
void setMessengerName(char* Value);
char* getName();
[Pascal]
property MessengerName : string;
[VB6]
Property MessengerName As String
[ActiveX]
BSTR MessengerName;
[C#]
public string MessengerName;
[VB.NET]
Public Property MessengerName As String
[Java]
public void setMessengerName(string value);
public string getMessengerName();
[Java ME]
not applicable;
[Palm]
not applicable;
[DLL]
void __stdcall MCMMFTransportSetMessengerName(HMCMMFTransport h, char* value);
char* __stdcall MCMMFTransportGetMessengerName(HMCMMFTransport h);
- h - handle to the object that was returned by Create method
This property specifies the name for the memory mapping. The name is used as a destination address for the sender -- the sender should specify this name in the address of the message. See more in Addressing topic.
The value of this property should be compatible with CreateFileMapping WinAPI function. Be sure to use unique names for all kernel objects in your system. Also remember about namespaces, if you are using MMF transport in a Terminal Server session or in Windows XP with multi-user logon option enabled.
|