Edit

Share via


RemoteDeviceHelper Constructors

Definition

Overloads

RemoteDeviceHelper()

Initializes a new instance of the RemoteDeviceHelper class.

RemoteDeviceHelper(List<IRemoteSystemFilter>)

Initializes a new instance of the RemoteDeviceHelper class.

RemoteDeviceHelper(DispatcherQueue)

Initializes a new instance of the RemoteDeviceHelper class.

RemoteDeviceHelper(List<IRemoteSystemFilter>, DispatcherQueue)

Initializes a new instance of the RemoteDeviceHelper class.

RemoteDeviceHelper()

Initializes a new instance of the RemoteDeviceHelper class.

public RemoteDeviceHelper();
Public Sub New ()

Applies to

RemoteDeviceHelper(List<IRemoteSystemFilter>)

Initializes a new instance of the RemoteDeviceHelper class.

public RemoteDeviceHelper(System.Collections.Generic.List<Windows.System.RemoteSystems.IRemoteSystemFilter> filter);
new Microsoft.Toolkit.Uwp.Helpers.RemoteDeviceHelper : System.Collections.Generic.List<Windows.System.RemoteSystems.IRemoteSystemFilter> -> Microsoft.Toolkit.Uwp.Helpers.RemoteDeviceHelper
Public Sub New (filter As List(Of IRemoteSystemFilter))

Parameters

filter
List<Windows.System.RemoteSystems.IRemoteSystemFilter>

Applies to

RemoteDeviceHelper(DispatcherQueue)

Initializes a new instance of the RemoteDeviceHelper class.

public RemoteDeviceHelper(Windows.System.DispatcherQueue dispatcherQueue = default);
new Microsoft.Toolkit.Uwp.Helpers.RemoteDeviceHelper : Windows.System.DispatcherQueue -> Microsoft.Toolkit.Uwp.Helpers.RemoteDeviceHelper
Public Sub New (Optional dispatcherQueue As DispatcherQueue = Nothing)

Parameters

dispatcherQueue
Windows.System.DispatcherQueue

The DispatcherQueue that should be used to dispatch UI updates, or null if this is being called from the UI thread.

Applies to

RemoteDeviceHelper(List<IRemoteSystemFilter>, DispatcherQueue)

Initializes a new instance of the RemoteDeviceHelper class.

public RemoteDeviceHelper(System.Collections.Generic.List<Windows.System.RemoteSystems.IRemoteSystemFilter> filter, Windows.System.DispatcherQueue dispatcherQueue = default);
new Microsoft.Toolkit.Uwp.Helpers.RemoteDeviceHelper : System.Collections.Generic.List<Windows.System.RemoteSystems.IRemoteSystemFilter> * Windows.System.DispatcherQueue -> Microsoft.Toolkit.Uwp.Helpers.RemoteDeviceHelper
Public Sub New (filter As List(Of IRemoteSystemFilter), Optional dispatcherQueue As DispatcherQueue = Nothing)

Parameters

filter
List<Windows.System.RemoteSystems.IRemoteSystemFilter>

Initiate Enumeration with specific RemoteSystemKind with Filters

dispatcherQueue
Windows.System.DispatcherQueue

The DispatcherQueue that should be used to dispatch UI updates, or null if this is being called from the UI thread.

Applies to