diff --git a/Microsoft.Rest/ClientRuntime/HttpOperationException.cs b/Microsoft.Rest/ClientRuntime/HttpOperationException.cs index 622fb88b35..7d02c64ec7 100644 --- a/Microsoft.Rest/ClientRuntime/HttpOperationException.cs +++ b/Microsoft.Rest/ClientRuntime/HttpOperationException.cs @@ -15,12 +15,12 @@ public class HttpOperationException : HttpRequestException /// /// Gets information about the associated HTTP request. /// - public HttpRequestMessage Request { get; protected set; } + public HttpRequestMessage Request { get; set; } /// /// Gets information about the associated HTTP response. /// - public HttpResponseMessage Response { get; protected set; } + public HttpResponseMessage Response { get; set; } /// /// Gets or sets the response object. diff --git a/Microsoft.Rest/ClientRuntime/HttpOperationResponse.cs b/Microsoft.Rest/ClientRuntime/HttpOperationResponse.cs index abc1778eff..476a182486 100644 --- a/Microsoft.Rest/ClientRuntime/HttpOperationResponse.cs +++ b/Microsoft.Rest/ClientRuntime/HttpOperationResponse.cs @@ -16,12 +16,12 @@ public class HttpOperationResponse /// /// Gets information about the associated HTTP request. /// - public HttpRequestMessage Request { get; protected set; } + public HttpRequestMessage Request { get; set; } /// /// Gets information about the associated HTTP response. /// - public HttpResponseMessage Response { get; protected set; } + public HttpResponseMessage Response { get; set; } /// /// Gets or sets the response object.