@@ -54,17 +54,17 @@ public async Task RunSampleAsync()
54
54
// This is a good way to test the import -- create a bunch of devices on one hub,
55
55
// then use this the Copy feature to copy the devices to another hub.
56
56
// Number of devices to create and add. Default is 10.
57
- Console . WriteLine ( "Create new devices for the hub." ) ;
58
- int NumToAdd = 10 ;
59
- await GenerateAndAddDevices ( _IoTHubConnectionString ,
60
- containerURIwSAS , NumToAdd , deviceListFile ) . ConfigureAwait ( false ) ;
57
+ // Console.WriteLine("Create new devices for the hub.");
58
+ // int NumToAdd = 10;
59
+ // await GenerateAndAddDevices(_IoTHubConnectionString,
60
+ // containerURIwSAS, NumToAdd, deviceListFile).ConfigureAwait(false);
61
61
62
62
// This exports the devices to a file in blob storage.
63
63
// You can use this to add a bunch of new devices, then export them and look at them in a file (in blob storage).
64
64
// Read the list of registered devices for the IoT Hub.
65
65
// Write them to blob storage.
66
- Console . WriteLine ( "Read devices from the original hub, write to blob storage." ) ;
67
- await ExportDevices ( containerURIwSAS , _IoTHubConnectionString ) . ConfigureAwait ( false ) ;
66
+ // Console.WriteLine("Read devices from the original hub, write to blob storage.");
67
+ // await ExportDevices(containerURIwSAS, _IoTHubConnectionString).ConfigureAwait(false);
68
68
69
69
Console . WriteLine ( "Copy devices from the original hub to a new hub." ) ;
70
70
// Copy devices from an existing hub to a new hub.
0 commit comments