Edit

Share via


UserPermissionCollection.Remove(String) Method

Definition

Removes the UserPermission object with the specified UserId from the collection.

public:
 abstract void Remove(System::String ^ userId);
public abstract void Remove (string userId);
abstract member Remove : string -> unit
Public MustOverride Sub Remove (userId As String)

Parameters

userId
String

The e-mail address in the format user@domain.com of the user to be removed.

Exceptions

The parameter passed to this method is a null reference (Nothing in Visual Basic).

The parameter passed to this method is not valid. For example, it is of the wrong type or format.

Examples

In the following example, clicking the Button control gets the UserPermissionsCollection for the current form and removes the user with the e-mail address someone@example.com.

public void CTRL1_Clicked(object sender, ClickedEventArgs e)
{
   this.Permission.UserPermissions.Remove("someone@example.com");
}
Public Sub CTRL1_Clicked(ByVal sender As Object, _
   ByVal e As ClickedEventArgs)
   Me.Permission.UserPermissions.Remove("someone@example.com")
End Sub

Remarks

This member can be accessed only by forms opened from a form template that has been configured to run with full trust using the Security and Trust category of the Form Options dialog box. This member requires full trust for the immediate caller and cannot be used by partially trusted code. For more information, see "Using Libraries from Partially Trusted Code" on MSDN.

This type or member can be accessed only from code running in forms opened in Microsoft InfoPath Filler.

Applies to