MdmSession.StartAsync Method

Definition

Overloads

StartAsync()

Start an MDM session with a constant alerts.

StartAsync(IIterable<MdmAlert>)

Starts an MDM session with custom alerts.

StartAsync()

Start an MDM session with a constant alerts.

public:
 virtual IAsyncAction ^ StartAsync() = StartAsync;
/// [Windows.Foundation.Metadata.Overload("StartAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction StartAsync();
[Windows.Foundation.Metadata.Overload("StartAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction StartAsync();
function startAsync()
Public Function StartAsync () As IAsyncAction

Returns

Results of the operation.

Attributes

Remarks

This method can be used if you simply want to check-in with the MDM server.

Applies to

StartAsync(IIterable<MdmAlert>)

Starts an MDM session with custom alerts.

public:
 virtual IAsyncAction ^ StartAsync(IIterable<MdmAlert ^> ^ alerts) = StartAsync;
/// [Windows.Foundation.Metadata.Overload("StartWithAlertsAsync")]
IAsyncAction StartAsync(IIterable<MdmAlert> const& alerts);
[Windows.Foundation.Metadata.Overload("StartWithAlertsAsync")]
public IAsyncAction StartAsync(IEnumerable<MdmAlert> alerts);
function startAsync(alerts)
Public Function StartAsync (alerts As IEnumerable(Of MdmAlert)) As IAsyncAction

Parameters

alerts

IIterable<MdmAlert>

IEnumerable<MdmAlert>

An iterable list of all custom MdmAlerts.

Returns

Results of the operation.

Attributes

Applies to