StandardDataFormats.Uri Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Notes
L’URI peut être modifié ou indisponible pour les versions après Windows 8.1. Utilisez plutôt ApplicationLink ou WebLink.
Propriété en lecture seule qui retourne la valeur de chaîne d’ID de format correspondant au format URI (Uniform Resource Identifier).
public:
static property Platform::String ^ Uri { Platform::String ^ get(); };
/// [get: Windows.Foundation.Metadata.Deprecated("Uri may be altered or unavailable for releases after Windows Phone 'OSVersion' (TBD). Instead, use WebLink or ApplicationLink.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, Windows.Foundation.UniversalApiContract)]
static winrt::hstring Uri();
/// [get: Windows.Foundation.Metadata.Deprecated("Uri may be altered or unavailable for releases after Windows Phone 'OSVersion' (TBD). Instead, use WebLink or ApplicationLink.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.Foundation.UniversalApiContract")]
static winrt::hstring Uri();
public static string Uri { [Windows.Foundation.Metadata.Deprecated("Uri may be altered or unavailable for releases after Windows Phone 'OSVersion' (TBD). Instead, use WebLink or ApplicationLink.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, typeof(Windows.Foundation.UniversalApiContract))] get; }
public static string Uri { [Windows.Foundation.Metadata.Deprecated("Uri may be altered or unavailable for releases after Windows Phone 'OSVersion' (TBD). Instead, use WebLink or ApplicationLink.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.Foundation.UniversalApiContract")] get; }
var string = StandardDataFormats.uri;
Public Shared ReadOnly Property Uri As String
Valeur de propriété
Valeur de chaîne d’ID de format correspondant au format URI (Uniform Resource Identifier).
- Attributs
Exemples
Cet exemple illustre l’utilisation de la propriété URI . Pour utiliser le code de cet exemple, ajoutez un écouteur d’événements à votre application pour gérer l’événement activé . Ensuite, placez ce code dans la fonction appelée par cet écouteur d’événements.
public void ShareSourceLoad()
{
DataTransferManager dataTransferManager = DataTransferManager.GetForCurrentView();
dataTransferManager.DataRequested += new TypedEventHandler<DataTransferManager, DataRequestedEventArgs>(this.DataRequested);
}
void DataRequested(DataTransferManager sender, DataRequestedEventArgs e)
{
DataRequest request = e.Request;
request.Data.Properties.Title = "Share Link Example";
request.Data.Properties.Description = "An example of how to share a link.";
var link = new Uri("http://www.fabrikam.com");
request.Data.SetUri(link);
}