DataPackagePropertySet.Description 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定描述 DataPackage內容的文字。
public:
property Platform::String ^ Description { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Description();
void Description(winrt::hstring value);
public string Description { get; set; }
var string = dataPackagePropertySet.description;
dataPackagePropertySet.description = string;
Public Property Description As String
屬性值
描述 DataPackage內容的文字。
範例
下列範例示範如何設定 DataPackage中內容的描述。
//To see this code in action, add a call to ShareSourceLoad to your constructor or other
//initializing function.
private void ShareSourceLoad()
{
DataTransferManager dataTransferManager = DataTransferManager.GetForCurrentView();
dataTransferManager.DataRequested += new TypedEventHandler<DataTransferManager, DataRequestedEventArgs>(this.DataRequested);
}
private void DataRequested(DataTransferManager sender, DataRequestedEventArgs e)
{
DataRequest request = e.Request;
request.Data.Properties.Title = "Share Text Example";
request.Data.Properties.Description = "An example of how to share text.";
request.Data.SetText("Hello World!");
}
備註
如果可以,建議您將描述新增至 DataPackage 物件。 目標應用程式可以使用此描述來協助使用者識別他們共用的內容。