Creates an instance using the specified URI, credentials and connection event handler.

Namespace: StreamBase.LiveView.API
Assembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 2.2.8.5956 (2.2.8.5956)

Syntax

         
 C#  Visual Basic  Visual C++ 
public ConnectionConfig(
	LiveViewURI uri,
	string username,
	string pwd,
	EventHandler<ConnectionEventArgs> handler
)
Public Sub New ( _
	uri As LiveViewURI, _
	username As String, _
	pwd As String, _
	handler As EventHandler(Of ConnectionEventArgs) _
)
public:
ConnectionConfig(
	LiveViewURI^ uri, 
	String^ username, 
	String^ pwd, 
	EventHandler<ConnectionEventArgs^>^ handler
)

Parameters

uri
LiveViewURI
The URI to use when connecting to the LiveView server.
username
String
The user name to use to authenticate when connecting to the LiveView server.
pwd
String
The password to use to authenticate when connecting to the LiveView server.
handler
EventHandler<(Of <(<'ConnectionEventArgs>)>)>
The connection event handler to use.

See Also