[TIBCO.EMS .NET Admin client library 5.1 documentation]

Returns the multicast channel with the specified name.

Namespace:  TIBCO.EMS.ADMIN
Assembly:  TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)

Syntax

public ChannelInfo GetChannel(
	string name
)
Public Function GetChannel ( _
	name As String _
) As ChannelInfo
public:
ChannelInfo^ GetChannel(
	String^ name
)

Parameters

name
Type: System..::.String
the name of the channel.

Return Value

ChannelInfo object or null if channel with specified name does not exist in the server.

Remarks

Notice returned object does not contain statistical data for the channel. Use GetChannelStatistics() method to obtain statistical information about the channel.

Exceptions

ExceptionCondition
System..::.ArgumentException if name parameter is invalid.
TIBCO.EMS.ADMIN..::.AdminException if not authorized or an error occurred.

See Also