From c1526a8add8e45d0165c9e2aa4736a993d1b276f Mon Sep 17 00:00:00 2001 From: stankovski Date: Thu, 26 Feb 2015 07:29:50 -0800 Subject: [PATCH] Removed protected qualifier from Request and Response setter --- Microsoft.Rest/ClientRuntime/HttpOperationException.cs | 4 ++-- Microsoft.Rest/ClientRuntime/HttpOperationResponse.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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.