Represents a URI suitable for use when connecting to a LiveView server. URIs take the form:

lv://[username[:password]@host[:port][?param1=value1[&param2=value2...]]

URI can be constructed using any of the supplied constructors or via FromString(String).

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 class LiveViewURI
Public Class LiveViewURI
public ref class LiveViewURI

Members

               
 All Members  Constructors   Fields   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
LiveViewURI()()()()
Default LiveView URI ('lv://localhost:10080').
LiveViewURI(String, Int32)
LiveView URI pointing to the given host and port.
LiveViewURI(String, Int32, String)
LiveView URI pointing to the given host, port and trailing path.
DEFAULT
The default LiveView URI ('lv://localhost:10080').
DEFAULT_PORT
The default port used by LiveView servers.
DEFAULT_SSL_PORT
The default port used by LiveView servers when an SSL connection is required.
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
FromString(String)
Constructs a LiveView URI from the given URI string (e.g. 'lv://myhost:12345').
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
HostName
Name or IP address of the LiveView server.
Parameters
The URI parameters, as specified after the '?' in lv://host[:port]?param1=value1[&param2=value2...]
Password
The specified password, as specified before the '@' in lv://username:password@host[:port]
Path
Path component of the URI (e.g. for a URI of "lv://myhost:10080/mypath/mysubpath", this property would be "mypath/mysubpath")
Port
Port on which the LiveView server is listening.
ToString()()()() (Overrides Object..::..ToString()()()().)
UserName
The specified username, as specified before the '@' in lv://username[:password]@host[:port]
UseSSL
Whether to use the SSL protocol to connect ('lvs://' instead of 'lv://').

Inheritance Hierarchy

System..::..Object
  StreamBase.LiveView.API..::..LiveViewURI

See Also