You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="requireNamespaceOwnership">Whether or not to verify that the <paramref name="requestingUser"/> has permissions for any reserved namespaces that the package is in.</param>
59
+
/// <exception cref="InvalidOperationException">Thrown if <paramref name="requireNamespaceOwnership"/> is true and the <paramref name="requestingUser"/> does not have permissions for an existing namespace.</exception>
/// Remove the user as from the list of owners of the package. Also remove the package registration
61
64
/// from the reserved namespaces owned by this user if the Id matches any of the reserved prefixes
62
65
/// and the user is the only package owner that owns the namespace that matches the package registration.
66
+
/// This method verifies that the <paramref name="requestingUser"/> has the permissions to an existing namespaces.
63
67
/// </summary>
64
68
/// <param name="packageRegistration">The package registration that is intended to get ownership.</param>
65
69
/// <param name="requestingUser">The user requesting to remove an owner from the package.</param>
66
70
/// <param name="userToBeRemoved">The user to remove as an owner from the package.</param>
67
71
/// <param name="commitChanges">Whether or not to commit the changes.</param>
72
+
/// <exception cref="InvalidOperationException">Thrown if the <paramref name="requestingUser"/> does not have permissions for an existing namespace.</exception>
0 commit comments