public MobileServiceClient(IMobileServiceClientOptions options) : this(options.MobileAppUri, null)
        {
            AlternateLoginHost = options.AlternateLoginHost;
            LoginUriPrefix     = options.LoginUriPrefix;

            var handlers = options.GetDefaultMessageHandlers(this) ?? EmptyHttpMessageHandlers;

            if (handlers.Any())
            {
                HttpClient = new MobileServiceHttpClient(handlers, MobileAppUri, InstallationId, httpRequestTimeout);
            }
        }
 public MobileServiceClient(IMobileServiceClientOptions options)
     : this(options, httpRequestTimeout : null)
 {
 }