本文整理汇总了C#中System.Guid.ToNative方法的典型用法代码示例。如果您正苦于以下问题:C# Guid.ToNative方法的具体用法?C# Guid.ToNative怎么用?C# Guid.ToNative使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Guid
的用法示例。
在下文中一共展示了Guid.ToNative方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ShowDialogAsync
/// <summary>
/// Shows a dialog on the connected Band device.
/// </summary>
/// <param name="tileId">The tile identifier.</param>
/// <param name="title">The message title.</param>
/// <param name="body">The message body.</param>
public async Task ShowDialogAsync(Guid tileId, string title, string body)
{
#if __ANDROID__ || __IOS__
await Native.ShowDialogTaskAsync(tileId.ToNative(), title, body);
#elif WINDOWS_PHONE_APP
await Native.ShowDialogAsync(tileId.ToNative(), title, body);
#endif
}
示例2: SendMessageAsync
/// <summary>
/// Sends a message to a specific tile to the connected Band device with the provided tile ID, title, body,
/// timestamp and with message flags to control how the message is provided.
/// </summary>
/// <param name="tileId">The tile identifier.</param>
/// <param name="title">The message title.</param>
/// <param name="body">The message body.</param>
/// <param name="timestamp">The message timestamp.</param>
/// <param name="messageFlags">The message flags to control how the message is provided to the Band device.</param>
public async Task SendMessageAsync(Guid tileId, string title, string body, DateTime timestamp, MessageFlags messageFlags)
{
#if __ANDROID__ || __IOS__
await Native.SendMessageTaskAsync(tileId.ToNative(), title, body, timestamp, messageFlags.ToNative());
#elif WINDOWS_PHONE_APP
await Native.SendMessageAsync(tileId.ToNative(), title, body, timestamp, messageFlags.ToNative());
#endif
}
示例3: SetTilePageDataAsync
public async Task SetTilePageDataAsync(Guid tileId, IEnumerable<PageData> pageData)
{
#if __ANDROID__
await Native.SetPagesTaskAsync(tileId.ToNative(), pageData.Select(pd => pd.ToNative()).ToArray());
#elif __IOS__
await Native.SetPagesTaskAsync(pageData.Select(pd => pd.ToNative()).ToArray(), tileId.ToNative());
#elif WINDOWS_PHONE_APP
await Native.SetPagesAsync(tileId.ToNative(), pageData.Select(pd => pd.ToNative()).ToArray());
#endif
}
示例4: RemoveTilePagesAsync
public async Task RemoveTilePagesAsync(Guid tileId)
{
#if __ANDROID__ || __IOS__
await Native.RemovePagesTaskAsync(tileId.ToNative());
#elif WINDOWS_PHONE_APP
await Native.RemovePagesAsync(tileId.ToNative());
#endif
}