// todo: handle OnNavigated
        public MainPage()
        {
            this.InitializeComponent();
            this.ViewModel = new MainPageViewModel();

            _appServiceClient = new AppServiceClient(
                GATEWAY,
                new TokenExpiredHandler(this.AuthenticateAsync)
                );
        }
Exemplo n.º 2
0
        // todo: handle OnNavigated
        public MainPage()
        {
            this.InitializeComponent();
            this.ViewModel = new MainPageViewModel();

            _appServiceClient = new AppServiceClient(
                GATEWAY,
                new TokenExpiredHandler(this.AuthenticateAsync)
                );
        }
Exemplo n.º 3
0
 public static ContactsAppV2 CreateContactsAppV2(this IAppServiceClient client, HttpClientHandler rootHandler, params DelegatingHandler[] handlers)
 {
     return(new ContactsAppV2(rootHandler, client.CreateHandler(handlers)));
 }
Exemplo n.º 4
0
 public static RgApiJenya CreateRgApiJenya(this IAppServiceClient client)
 {
     return(new RgApiJenya(client.CreateHandler()));
 }
Exemplo n.º 5
0
 public static RgApiJenya CreateRgApiJenya(this IAppServiceClient client, Uri uri, params DelegatingHandler[] handlers)
 {
     return(new RgApiJenya(uri, client.CreateHandler(handlers)));
 }
Exemplo n.º 6
0
 public static BotConnectorDirectLineAPIV30 CreateBotConnectorDirectLineAPIV30(this IAppServiceClient client, HttpClientHandler rootHandler, params DelegatingHandler[] handlers)
 {
     return(new BotConnectorDirectLineAPIV30(rootHandler, client.CreateHandler(handlers)));
 }
 public static AzureCardsClient CreateAzureCardsClient(this IAppServiceClient client, HttpClientHandler rootHandler, params DelegatingHandler[] handlers)
 {
     return(new AzureCardsClient(rootHandler, client.CreateHandler(handlers)));
 }
Exemplo n.º 8
0
 public static BlobSmartAPI CreateBlobSmartAPI(this IAppServiceClient client)
 {
     return(new BlobSmartAPI(client.CreateHandler()));
 }
Exemplo n.º 9
0
 public static Pltkw3msApiPayment CreatePltkw3msApiPayment(this IAppServiceClient client, HttpClientHandler rootHandler, params DelegatingHandler[] handlers)
 {
     return(new Pltkw3msApiPayment(rootHandler, client.CreateHandler(handlers)));
 }
Exemplo n.º 10
0
 public static Pltkw3msApiPayment CreatePltkw3msApiPayment(this IAppServiceClient client, Uri uri, params DelegatingHandler[] handlers)
 {
     return(new Pltkw3msApiPayment(uri, client.CreateHandler(handlers)));
 }
 public static LandauWebAPI CreateLandauWebAPI(this IAppServiceClient client)
 {
     return(new LandauWebAPI(client.CreateHandler()));
 }
 public static LandauWebAPI CreateLandauWebAPI(this IAppServiceClient client, HttpClientHandler rootHandler, params DelegatingHandler[] handlers)
 {
     return(new LandauWebAPI(rootHandler, client.CreateHandler(handlers)));
 }
 public static LandauWebAPI CreateLandauWebAPI(this IAppServiceClient client, Uri uri, params DelegatingHandler[] handlers)
 {
     return(new LandauWebAPI(uri, client.CreateHandler(handlers)));
 }
Exemplo n.º 14
0
 public static Frcrankapi01 CreateFrcrankapi01(this IAppServiceClient client)
 {
     return(new Frcrankapi01(client.CreateHandler()));
 }
Exemplo n.º 15
0
 public static Frcrankapi01 CreateFrcrankapi01(this IAppServiceClient client, HttpClientHandler rootHandler, params DelegatingHandler[] handlers)
 {
     return(new Frcrankapi01(rootHandler, client.CreateHandler(handlers)));
 }
 public ClientController(IAppServiceClient appClient)
 {
     _AppClient = appClient;
 }
Exemplo n.º 17
0
 public static BlobSmartAPI CreateBlobSmartAPI(this IAppServiceClient client, HttpClientHandler rootHandler, params DelegatingHandler[] handlers)
 {
     return(new BlobSmartAPI(rootHandler, client.CreateHandler(handlers)));
 }
Exemplo n.º 18
0
 public static Pltkw3msApiPayment CreatePltkw3msApiPayment(this IAppServiceClient client)
 {
     return(new Pltkw3msApiPayment(client.CreateHandler()));
 }
 public static AzureCardsClient CreateAzureCardsClient(this IAppServiceClient client, Uri uri, params DelegatingHandler[] handlers)
 {
     return(new AzureCardsClient(uri, client.CreateHandler(handlers)));
 }
Exemplo n.º 20
0
 public static ContactsListAPI CreateContactsListAPI(this IAppServiceClient client, params DelegatingHandler[] handlers)
 {
     return(new ContactsListAPI(client.CreateHandler(handlers)));
 }
 public static AzureCardsClient CreateAzureCardsClient(this IAppServiceClient client)
 {
     return(new AzureCardsClient(client.CreateHandler()));
 }
Exemplo n.º 22
0
 public static ContactsListAPI CreateContactsListAPI(this IAppServiceClient client)
 {
     return(new ContactsListAPI(client.CreateHandler()));
 }
Exemplo n.º 23
0
 public static BotConnectorDirectLineAPIV30 CreateBotConnectorDirectLineAPIV30(this IAppServiceClient client)
 {
     return(new BotConnectorDirectLineAPIV30(client.CreateHandler()));
 }
Exemplo n.º 24
0
 public static MyDashDataAPIClient CreateMyDashDataAPIClient(this IAppServiceClient client, Uri uri, params DelegatingHandler[] handlers)
 {
     return(new MyDashDataAPIClient(uri, client.CreateHandler(handlers)));
 }
Exemplo n.º 25
0
 public TransactionController(IAppServiceClient appClient, IAppServiceTransaction appTransaction, IAppServiceCard appCard)
 {
     this.appCard        = appCard;
     this.appClient      = appClient;
     this.appTransaction = appTransaction;
 }
Exemplo n.º 26
0
 public static MyDashDataAPIClient CreateMyDashDataAPIClient(this IAppServiceClient client, HttpClientHandler rootHandler, params DelegatingHandler[] handlers)
 {
     return(new MyDashDataAPIClient(rootHandler, client.CreateHandler(handlers)));
 }
Exemplo n.º 27
0
 public static RgApiJenya CreateRgApiJenya(this IAppServiceClient client, HttpClientHandler rootHandler, params DelegatingHandler[] handlers)
 {
     return(new RgApiJenya(rootHandler, client.CreateHandler(handlers)));
 }
Exemplo n.º 28
0
 public static MyDashDataAPIClient CreateMyDashDataAPIClient(this IAppServiceClient client)
 {
     return(new MyDashDataAPIClient(client.CreateHandler()));
 }
Exemplo n.º 29
0
 public static ContactsAppV2 CreateContactsAppV2(this IAppServiceClient client, Uri uri, params DelegatingHandler[] handlers)
 {
     return(new ContactsAppV2(uri, client.CreateHandler(handlers)));
 }
Exemplo n.º 30
0
 public ClientController(IAppServiceClient appClient)
 {
     _appClient = appClient;
 }
Exemplo n.º 31
0
 public static ContactsAppV2 CreateContactsAppV2(this IAppServiceClient client)
 {
     return(new ContactsAppV2(client.CreateHandler()));
 }
Exemplo n.º 32
0
 public static BlobSmartAPI CreateBlobSmartAPI(this IAppServiceClient client, Uri uri, params DelegatingHandler[] handlers)
 {
     return(new BlobSmartAPI(uri, client.CreateHandler(handlers)));
 }