Creates an instance using the specified URI and credentials with no 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++ 
[ObsoleteAttribute("Deprecated. Please use ConnectionConfig(LiveViewURI uri, string username, string pwd) instead.")]
public ConnectionConfig(
	string uri,
	string username,
	string pwd
)
<ObsoleteAttribute("Deprecated. Please use ConnectionConfig(LiveViewURI uri, string username, string pwd) instead.")> _
Public Sub New ( _
	uri As String, _
	username As String, _
	pwd As String _
)
public:
[ObsoleteAttribute(L"Deprecated. Please use ConnectionConfig(LiveViewURI uri, string username, string pwd) instead.")]
ConnectionConfig(
	String^ uri, 
	String^ username, 
	String^ pwd
)

Parameters

uri
String
The URI to use when connecting to the LiveView server. Valid URIs must start with "lv://" and will default to port 10080 if none is specified.
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.

Remarks

DEPRECATED: Please use ConnectionConfig(LiveViewURI uri, string username, string pwd) instead.

Exceptions

ExceptionCondition
StreamBase.LiveView.API..::..LiveViewURIExceptionIf the given URI is malformed.

See Also