MdmSession.StartAsync Method
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
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
An iterable list of all custom MdmAlerts.
Returns
Results of the operation.
- Attributes