@@ -63,17 +63,6 @@ public async Task<AppEntity> TemplateAsync(CancellationToken cancellationToken =
6363 return await GroupGetAsync < AppEntity > ( "Template" , cancellationToken : cancellationToken ) . ConfigureAwait ( false ) ;
6464 }
6565
66- /// <summary>
67- /// Add a new app.
68- /// </summary>
69- /// <param name="entity">The app to add.</param>
70- /// <param name="cancellationToken">A <see cref="CancellationToken"/> allowing the operation to be canceled.</param>
71- /// <returns>The app, with server-allocated properties such as <see cref="Entity.Id"/> initialized.</returns>
72- public async Task < AppEntity > AddAsync ( AppEntity entity , CancellationToken cancellationToken = default )
73- {
74- return await GroupCreateAsync < AppEntity , AppEntity > ( entity , cancellationToken : cancellationToken ) . ConfigureAwait ( false ) ;
75- }
76-
7766 /// <summary>
7867 /// Remove an existing app.
7968 /// </summary>
@@ -85,17 +74,6 @@ public async Task RemoveAsync(AppEntity entity, CancellationToken cancellationTo
8574 await Client . DeleteAsync ( entity , "Self" , entity , cancellationToken : cancellationToken ) . ConfigureAwait ( false ) ;
8675 }
8776
88- /// <summary>
89- /// Update an existing app.
90- /// </summary>
91- /// <param name="entity">The app to update.</param>
92- /// <param name="cancellationToken">A <see cref="CancellationToken"/> allowing the operation to be canceled.</param>
93- /// <returns>A task indicating completion.</returns>
94- public async Task UpdateAsync ( AppEntity entity , CancellationToken cancellationToken = default )
95- {
96- await Client . PutAsync ( entity , "Self" , entity , cancellationToken : cancellationToken ) . ConfigureAwait ( false ) ;
97- }
98-
9977 /// <summary>
10078 /// Create a new app by installing a NuGet package.
10179 /// </summary>
0 commit comments