This commit is contained in:
anhashia 2016-10-10 16:04:05 -07:00 коммит произвёл GitHub
Родитель 024c350eb0
Коммит 5ef08c93d6
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -11,7 +11,13 @@ The library is available as a NuGet package for you include in your own developm
* Batches messages to improve communication efficiency.
* Supports pluggable transport protocols.
Note the library Microsoft.Azure.Devices.Client supports both HTTPS and AMQP protocols. The Microsoft.Azure.Devices.Client.WinRT library currently supports HTTPS at this time.
> Note: Currently, **Microsoft.Azure.Devices.Client.WinRT** doesn't support **MQTT** protocol.
For example,calling `DeviceClient deviceClient = DeviceClient.CreateFromConnectionString(DeviceConnectionString, TransportType.Mqtt);` will result in "Mqtt protocol is not supported" exception.
> Note : Currently, **Microsoft.Azure.Devices.Client.PCL** only supports **HTTPS** protocol.
For example, calling `DeviceClient deviceClient = DeviceClient.CreateFromConnectionString(DeviceConnectionString, TransportType.Amqp);` will result in "Amqp protocol is not supported" exception.
## Application development guidelines