ShareOperation.Data | data property
[This documentation is preliminary and is subject to change.]
Contains a DataPackage object with the data that the user wants to share.
Syntax
var data = shareOperation.data;
Property value
Type: DataPackageView
Contains the data that the user wants to share.
Examples
The following example shows how to get the DataPackageView object from the data property. To use the code in this example, add event listener to your app to handle the activated event. Then put this code in the function that this event listener calls.
if (eventArgs.kind === Windows.ApplicationModel.Activation.ActivationKind.shareTarget) { shareOperation = eventArgs.shareOperation; if (shareOperation.data.contains(Windows.ApplicationModel.DataTransfer.StandardDataFormats.text)) { var output = document.createElement("div"); var shareData = shareOperation.data.getText(); output.innerText = shareData; document.body.appendChild(output); shareOperation.reportCompleted(); } }
Requirements
|
Minimum supported client | Windows 8 Release Preview |
|---|---|
|
Minimum supported server | Windows Server 2012 |
|
Namespace |
|
|
Metadata |
|
See also
Build date: 5/22/2012