Gets the channel owner info.

Namespace:  GrassValley.Mseries.AppServer
Assembly:  GrassValley.Mseries.AppServer (in GrassValley.Mseries.AppServer.dll) Version: 1.0.0.0

Syntax

C#
public void GetChannelOwnerInfo(
	Object channelId,
	out string machine,
	out string suite,
	out string user,
	out string app
)
Visual Basic (Declaration)
Public Sub GetChannelOwnerInfo ( _
	channelId As Object, _
	<OutAttribute> ByRef machine As String, _
	<OutAttribute> ByRef suite As String, _
	<OutAttribute> ByRef user As String, _
	<OutAttribute> ByRef app As String _
)
Visual C++
public:
virtual void GetChannelOwnerInfo(
	Object^ channelId, 
	[OutAttribute] String^% machine, 
	[OutAttribute] String^% suite, 
	[OutAttribute] String^% user, 
	[OutAttribute] String^% app
) sealed

Parameters

channelId
Type: System..::.Object
Channel ID. Value can either be an int value (e.g. 0, 1, ... max channel number) or a channel ID string (e.g. "C1", "R2", "P1", etc.). See the K2's c:\profile\config\config.xml file for more examples.
machine
Type: System..::.String %
Machine.
suite
Type: System..::.String %
Suite.
user
Type: System..::.String %
User.
app
Type: System..::.String %
App.

Implements

IAppServer..::.GetChannelOwnerInfo(Object, String%, String%, String%, String%)

See Also