DMClientSetCollectionFindClientByName Method
|
Alterian Email Manager 6.2.3 SDK Help File
Allows the collection to be searched for a specific client by name. If the client is found, it is assigned to the out DMClient parameter.
Namespace:
DMLibraryAssembly:
DMLibrary (in DMLibrary.dll) Version: 1.0.6340.17420
Syntaxpublic bool FindClientByName(
string Name,
out DMClient Client
)
Public Function FindClientByName (
Name As String,
<OutAttribute> ByRef Client As DMClient
) As Boolean
public:
bool FindClientByName(
String^ Name,
[OutAttribute] DMClient^% Client
)
member FindClientByName :
Name : string *
Client : DMClient byref -> bool
function FindClientByName(Name, Client);
Parameters
- Name
- Type: SystemString
The name of the client to search the collection for. - Client
- Type: DMLibraryDMClient
An out parameter client object. If the client specified by name is found within the collection,
it is returned in this object.
Return Value
Type:
BooleanA boolean value indicating whether or not a client with the specified client name was found within the collection.
See Also