Remove the TransportKind enum from the SDK since it is not used. (#1653)

* Remove the TransportKind enum from the SDK since it is not used.

* Add a CL entry.
This commit is contained in:
Ahson Khan 2021-02-10 13:42:01 -08:00 committed by GitHub
parent 66e66aa83b
commit 8f75082fd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 11 deletions

View File

@ -4,7 +4,8 @@
### Breaking Changes
- Split `Azure::Core::RequestConditions` into `Azure::Core::MatchConditions` and `Auzre::Core::ModifiedConditions`.
- Split `Azure::Core::RequestConditions` into `Azure::Core::MatchConditions` and `Azure::Core::ModifiedConditions`.
- Removed `TransportKind` enum from `Azure::Core::Http`.
## 1.0.0-beta.6 (2021-02-09)

View File

@ -87,16 +87,6 @@ namespace Azure { namespace Core { namespace Http {
}
};
/**
* @brief HTTP transport implementation used.
*/
enum class TransportKind
{
// TODO move this to Factory
Curl, ///< CURL.
WinHttp ///< WinHTTP.
};
/**
* @brief Defines the possible HTTP status codes.
*/