This topic has not yet been rated - Rate this topic

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

Windows.ApplicationModel.DataTransfer.ShareTarget
Windows::ApplicationModel::DataTransfer::ShareTarget [C++]

Metadata

Windows.winmd

See also

ShareOperation

 

 

Build date: 5/22/2012

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ