C# Класс InTheHand.ApplicationModel.DataTransfer.DataPackageView

A read-only version of a DataPackage. Apps that receive shared content get this object when acquiring content.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Contains ( string formatId ) : bool

Checks to see if the DataPackageView contains a specific data format.

GetApplicationLinkAsync ( ) : Task

Gets the application link in the DataPackageView object.

GetDataAsync ( string formatId ) : Task

Gets the data contained in the DataPackageView.

GetTextAsync ( ) : Task

Gets the text in the DataPackageView object.

GetWebLinkAsync ( ) : Task

Gets the web link in the DataPackageView object.

Приватные методы

Метод Описание
DataPackageView ( DataPackage package ) : System
GetUri ( string format ) : Uri

Описание методов

Contains() публичный Метод

Checks to see if the DataPackageView contains a specific data format.
public Contains ( string formatId ) : bool
formatId string The name of the format.
Результат bool

GetApplicationLinkAsync() публичный Метод

Gets the application link in the DataPackageView object.
public GetApplicationLinkAsync ( ) : Task
Результат Task

GetDataAsync() публичный Метод

Gets the data contained in the DataPackageView.
public GetDataAsync ( string formatId ) : Task
formatId string The format of the data.
Результат Task

GetTextAsync() публичный Метод

Gets the text in the DataPackageView object.
public GetTextAsync ( ) : Task
Результат Task

GetWebLinkAsync() публичный Метод

Gets the web link in the DataPackageView object.
public GetWebLinkAsync ( ) : Task
Результат Task