RemotePresenceView Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RemotePresenceView(LocalEndpoint) |
Creates an instance of the RemotePresenceView class. |
RemotePresenceView(LocalEndpoint, RemotePresenceViewSettings) |
Creates an instance of the RemotePresenceView class. |
RemotePresenceView(LocalEndpoint)
Creates an instance of the RemotePresenceView class.
public:
RemotePresenceView(Microsoft::Rtc::Collaboration::LocalEndpoint ^ endpoint);
public RemotePresenceView (Microsoft.Rtc.Collaboration.LocalEndpoint endpoint);
new Microsoft.Rtc.Collaboration.Presence.RemotePresenceView : Microsoft.Rtc.Collaboration.LocalEndpoint -> Microsoft.Rtc.Collaboration.Presence.RemotePresenceView
Public Sub New (endpoint As LocalEndpoint)
Parameters
- endpoint
- LocalEndpoint
The endpoint to which this RemotePresenceView belongs.
Exceptions
Thrown when endpoint
is null.
Remarks
The subscription mode is Default.
Applies to
RemotePresenceView(LocalEndpoint, RemotePresenceViewSettings)
Creates an instance of the RemotePresenceView class.
public:
RemotePresenceView(Microsoft::Rtc::Collaboration::LocalEndpoint ^ endpoint, Microsoft::Rtc::Collaboration::Presence::RemotePresenceViewSettings ^ settings);
public RemotePresenceView (Microsoft.Rtc.Collaboration.LocalEndpoint endpoint, Microsoft.Rtc.Collaboration.Presence.RemotePresenceViewSettings settings);
new Microsoft.Rtc.Collaboration.Presence.RemotePresenceView : Microsoft.Rtc.Collaboration.LocalEndpoint * Microsoft.Rtc.Collaboration.Presence.RemotePresenceViewSettings -> Microsoft.Rtc.Collaboration.Presence.RemotePresenceView
Public Sub New (endpoint As LocalEndpoint, settings As RemotePresenceViewSettings)
Parameters
- endpoint
- LocalEndpoint
The endpoint to which this RemotePresenceView belongs.
- settings
- RemotePresenceViewSettings
The settings to use to initialize this RemotePresenceView.
Exceptions
Thrown when endpoint
or settings
is null.
Thrown when endpoint
is not established.