DatagramSocket.EnableTransferOwnership 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
EnableTransferOwnership(Guid, SocketActivityConnectedStandbyAction) |
Enables your app's background task to be triggered by the socket broker when traffic for this DatagramSocket arrives while the system is in connected standby. |
EnableTransferOwnership(Guid) |
Enables your app's background task to be triggered by the socket broker when traffic for this DatagramSocket arrives while the app is not active. |
EnableTransferOwnership(Guid, SocketActivityConnectedStandbyAction)
Enables your app's background task to be triggered by the socket broker when traffic for this DatagramSocket arrives while the system is in connected standby.
public:
virtual void EnableTransferOwnership(Platform::Guid taskId, SocketActivityConnectedStandbyAction connectedStandbyAction) = EnableTransferOwnership;
/// [Windows.Foundation.Metadata.Overload("EnableTransferOwnershipWithConnectedStandbyAction")]
void EnableTransferOwnership(winrt::guid const& taskId, SocketActivityConnectedStandbyAction const& connectedStandbyAction);
[Windows.Foundation.Metadata.Overload("EnableTransferOwnershipWithConnectedStandbyAction")]
public void EnableTransferOwnership(Guid taskId, SocketActivityConnectedStandbyAction connectedStandbyAction);
function enableTransferOwnership(taskId, connectedStandbyAction)
Public Sub EnableTransferOwnership (taskId As Guid, connectedStandbyAction As SocketActivityConnectedStandbyAction)
Parameters
- taskId
-
Guid
Platform::Guid
winrt::guid
The IBackgroundTaskRegistration.TaskId of the background task that will be triggered by the socket broker when traffic arrives for this DatagramSocket.
- connectedStandbyAction
- SocketActivityConnectedStandbyAction
Specifies whether to enable or disable the activation of the background task when traffic arrives.
- Attributes
See also
Applies to
EnableTransferOwnership(Guid)
Enables your app's background task to be triggered by the socket broker when traffic for this DatagramSocket arrives while the app is not active.
public:
virtual void EnableTransferOwnership(Platform::Guid taskId) = EnableTransferOwnership;
/// [Windows.Foundation.Metadata.Overload("EnableTransferOwnership")]
void EnableTransferOwnership(winrt::guid const& taskId);
[Windows.Foundation.Metadata.Overload("EnableTransferOwnership")]
public void EnableTransferOwnership(Guid taskId);
function enableTransferOwnership(taskId)
Public Sub EnableTransferOwnership (taskId As Guid)
Parameters
- taskId
-
Guid
Platform::Guid
winrt::guid
The IBackgroundTaskRegistration.TaskId of the background task that will be triggered by the socket broker when traffic arrives for this DatagramSocket.
- Attributes