/// <summary>
 /// Configures the client with a platform helper
 /// </summary>
 /// <param name="this">The this.</param>
 /// <param name="platformHelper">The platform helper.</param>
 /// <returns></returns>
 public static IHockeyClientConfigurable Configure(this IHockeyClient @this, IHockeyPlatformHelper platformHelper)
 {
     @this.AsInternal().PlatformHelper = platformHelper;
     return @this as IHockeyClientConfigurable;
 }
Exemple #2
0
 /// <summary>
 /// Configures the client with a platform helper
 /// </summary>
 /// <param name="this">The this.</param>
 /// <param name="platformHelper">The platform helper.</param>
 /// <returns></returns>
 public static IHockeyClientConfigurable Configure(this IHockeyClient @this, IHockeyPlatformHelper platformHelper)
 {
     @this.AsInternal().PlatformHelper = platformHelper;
     return(@this as IHockeyClientConfigurable);
 }
Exemple #3
0
 internal static string GetWindowsPhoneVersionString(this IHockeyPlatformHelper @this)
 {
     return(@this.OSPlatform.Contains("Phone") ? @this.OSVersion : String.Empty);
 }