UserPermissionCollection.Add Method (String, PermissionType, DateTime)
Creates a new set of permissions on the current form for the specified user with the specified permissions and an expiration date.
Assembly: Microsoft.Office.InfoPath (in Microsoft.Office.InfoPath.dll)
public abstract UserPermission Add( string userId, PermissionType permission, DateTime expirationDate )
Parameters
- userId
- Type: System.String
The e-mail address in the format user@domain.com of the user to whom permissions on the current form are being granted.
- permission
- Type: Microsoft.Office.InfoPath.PermissionType
The permissions on the current form that are being granted to the specified user as a combination of one or more PermissionType values.
- expirationDate
- Type: System.DateTime
The expiration date for the permissions that are being granted as a System.DateTime value.
Return Value
Type: Microsoft.Office.InfoPath.UserPermissionA UserPermission that represents the specified user.
| Exception | Condition |
|---|---|
| FormatException | The DateTime value provided is invalid. |
| ArgumentNullException | The parameters passed to this method are null. |
| ArgumentException | The parameters passed to this method are not valid. For example, they are of the wrong type or format. |
| SecurityException | The form template is not configured for Full Trust using the Security and Trust category of the Form Options dialog box. |
This member can be accessed only by forms opened from a form template that as 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.
In the following example, clicking the Button control gets the UserPermissionsCollection for the current form, adds and assigns a user to the Full Control access level, and sets an expiration date of two days from the current date.
public void CTRL1_Clicked(object sender, ClickedEventArgs e) { string strExpirationDate = DateTime.Today.AddDays(2).ToString(); DateTime dtExpirationDate = DateTime.Parse(strExpirationDate); this.Permission.UserPermissions.Add("someone@example.com", PermissionType.FullControl, dtExpirationDate); }