Skip to content

Commit bcf2f4f

Browse files
author
Nicholas King
committed
Add DeletedWebApps extension method to websites client for .NET Core
1 parent 38072bd commit bcf2f4f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/ResourceManager/Websites/Commands.Websites/Utilities/WebsitesClientExtensions.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@ public static IWebAppsOperations WebApps(this WebSiteManagementClient client)
8888
return client.WebApps;
8989
}
9090

91+
public static IDeletedWebAppsOperations DeletedWebApps(this WebSiteManagementClient client)
92+
{
93+
return client.DeletedWebApps;
94+
}
95+
9196
public static Site CreateOrUpdateSiteSlot(this IWebAppsOperations webApp,
9297
string resourceGroupName,
9398
string name,

0 commit comments

Comments
 (0)