当前位置: 首页>>代码示例>>C#>>正文


C# Guid.ToNative方法代码示例

本文整理汇总了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
        }
开发者ID:JamesEarle,项目名称:Microsoft-Band-SDK-Bindings,代码行数:14,代码来源:BandNotificationManager.cs

示例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
        }
开发者ID:JamesEarle,项目名称:Microsoft-Band-SDK-Bindings,代码行数:17,代码来源:BandNotificationManager.cs

示例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
        }
开发者ID:JamesEarle,项目名称:Microsoft-Band-SDK-Bindings,代码行数:10,代码来源:BandTileManager.cs

示例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
        }
开发者ID:JamesEarle,项目名称:Microsoft-Band-SDK-Bindings,代码行数:8,代码来源:BandTileManager.cs


注:本文中的System.Guid.ToNative方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。