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

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

Syntax

         
 C#  Visual Basic  Visual C++ 
[ObsoleteAttribute("Deprecated. Please use ConnectionConfig(handler){URI = uri)}; instead.")]
public ConnectionConfig(
	LiveViewURI uri,
	EventHandler<ConnectionEventArgs> handler
)
<ObsoleteAttribute("Deprecated. Please use ConnectionConfig(handler){URI = uri)}; instead.")> _
Public Sub New ( _
	uri As LiveViewURI, _
	handler As EventHandler(Of ConnectionEventArgs) _
)
public:
[ObsoleteAttribute(L"Deprecated. Please use ConnectionConfig(handler){URI = uri)}; instead.")]
ConnectionConfig(
	LiveViewURI^ uri, 
	EventHandler<ConnectionEventArgs^>^ handler
)

Parameters

uri
LiveViewURI
The URI to use when connecting to the LiveView server.
handler
EventHandler<(Of <(<'ConnectionEventArgs>)>)>
The connection event handler to use.

See Also