Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Common/AzureRest/AzureRestClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.Generic;
using System.Net.Http;

namespace Microsoft.WindowsAzure.Commands.Common.AzureRest
namespace Microsoft.Azure.Internal.Common
{
public partial class AzureRestClient : ServiceClient<AzureRestClient>, IAzureRestClient, IAzureClient
{
Expand Down Expand Up @@ -33,7 +33,7 @@ public partial class AzureRestClient : ServiceClient<AzureRestClient>, IAzureRes

public bool EndsWithSlash { get; private set; }

protected AzureRestClient(params DelegatingHandler[] handlers)
protected AzureRestClient(params DelegatingHandler[] handlers) : base(handlers)
{
Initialize();
}
Expand Down
2 changes: 1 addition & 1 deletion src/Common/AzureRest/AzureRestOperations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Threading;
using System.Threading.Tasks;

namespace Microsoft.WindowsAzure.Commands.Common.AzureRest
namespace Microsoft.Azure.Internal.Common
{
internal partial class AzureRestOperations : IServiceOperations<AzureRestClient>, IAzureRestOperations
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/AzureRest/IAzureRestClient.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Microsoft.WindowsAzure.Commands.Common.AzureRest
namespace Microsoft.Azure.Internal.Common
{
public partial interface IAzureRestClient : IDisposable
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/AzureRest/IAzureRestOperations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading;
using System.Threading.Tasks;

namespace Microsoft.WindowsAzure.Commands.Common.AzureRest
namespace Microsoft.Azure.Internal.Common
{
/// <summary>
/// AzureRest operations.
Expand Down