View Source
Class UserInviteEventArgs
Inheritance
System.Object
System.EventArgs
Assembly: Umbraco.Web.dll
Syntax
public class UserInviteEventArgs : IdentityAuditEventArgs
Constructors
View Source
UserInviteEventArgs(String, Int32, UserInvite, IUser, String)
Declaration
public UserInviteEventArgs(string ipAddress, int performingUser, UserInvite invitedUser, IUser localUser, string comment = null)
Parameters
Type |
Name |
Description |
System.String |
ipAddress |
|
System.Int32 |
performingUser |
|
UserInvite |
invitedUser |
|
IUser |
localUser |
|
System.String |
comment |
|
Properties
View Source
InvitedUser
The model used to invite the user
Declaration
public UserInvite InvitedUser { get; }
Property Value
View Source
InviteHandled
If event handler sets this to true it indicates that Umbraco will no try to send the invite itself
Declaration
public bool InviteHandled { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
View Source
ShowUserResult
if set to true will show the edit user button in the UI, else it will not be shown
Declaration
public bool ShowUserResult { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
View Source
User
The local user that has been created that is pending the invite
Declaration
public IUser User { get; }
Property Value