public Service1Client() : base(Service1Client.GetDefaultBinding(), Service1Client.GetDefaultEndpointAddress()) { this.Endpoint.Name = EndpointConfiguration.BasicHttpBinding_IService1.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); }
public Service1Client(EndpointConfiguration endpointConfiguration) : base(Service1Client.GetBindingForEndpoint(endpointConfiguration), Service1Client.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); }
private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress() { return(Service1Client.GetEndpointAddress(EndpointConfiguration.BasicHttpBinding_IService1)); }
private static System.ServiceModel.Channels.Binding GetDefaultBinding() { return(Service1Client.GetBindingForEndpoint(EndpointConfiguration.BasicHttpBinding_IService1)); }
public Service1Client(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(Service1Client.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); }
private void SendLiveData(string type, double value) { ServiceReference1.Service1Client client = new ServiceReference1.Service1Client(); client.SendMonitoringDataAsync(eventUniqueID, type, value); client.CloseAsync(); }
private async void TileManager_TileOpened(object sender, BandTileEventArgs <IBandTileOpenedEvent> e) { //alert! //Create new alert in the alerts list ServiceReference1.Service1Client client = new ServiceReference1.Service1Client(); var result = await client.CreateAlertAsync(59.975349, 10.665395, eventUniqueID); await client.CloseAsync(); await bandClient.NotificationManager.ShowDialogAsync(e.TileEvent.TileId, "Help is on the way!", "It shouldn't take long..."); heartRateMonitor(); //skinTemperatureMonitor(); //GyroscopeMonitor(); //PedometerMonitor(); //GsrMonitor(); //UVMonitor(); // start the Heartrate sensor try { await bandClient.SensorManager.HeartRate.StartReadingsAsync(); } catch (BandException ex) { // handle a Band connection exception throw ex; } //try //{ // await bandClient.SensorManager.Gyroscope.StartReadingsAsync(); //} //catch (BandException ex) //{ // // handle a Band connection exception // throw ex; //} //try //{ // await bandClient.SensorManager.Pedometer.StartReadingsAsync(); //} //catch (BandException ex) //{ // // handle a Band connection exception // throw ex; //} //try //{ // await bandClient.SensorManager.Gsr.StartReadingsAsync(); //} //catch (BandException ex) //{ // // handle a Band connection exception // throw ex; //} //try //{ // await bandClient.SensorManager.UV.StartReadingsAsync(); //} //catch (BandException ex) //{ // // handle a Band connection exception // throw ex; //} //try //{ // await bandClient.SensorManager.SkinTemperature.StartReadingsAsync(); //} //catch (BandException ex) //{ // // handle a Band connection exception // throw ex; //} }