Example #1
0
        public Connect(IotHubManager iotHubManager)
        {
            InitializeComponent();
            this.iotHubManager = iotHubManager;
            azureConnections   = new AzureConnections();

            this.comboBox1.DataSource   = azureConnections.GetKeys();
            this.comboBox1.SelectedText = string.Empty;
        }
Example #2
0
 public IotHubMessageViewerForm(IotHubManager iotHubManager)
 {
     InitializeComponent();
     this.iotHubManager       = iotHubManager;
     this.iotHubNametext.Text = iotHubManager.HostName;
 }
Example #3
0
 public AzureIotHubExplorer()
 {
     InitializeComponent();
     iotHubManager = IotHubManager.Instance;
 }
 public AddDeviceForm(IotHubManager iotHubManager)
 {
     InitializeComponent();
     this.iotHubManager = iotHubManager;
 }