Table of Contents

Class UserChangingEventArgs

Namespace
Loehnert.Lisrt.Users
Assembly
Loehnert.Lisrt.dll

Provides data for a cancelable user changing event.

public class UserChangingEventArgs : CancelEventArgs
Inheritance
UserChangingEventArgs
Inherited Members

Constructors

UserChangingEventArgs(IUser, IUser)

Initializes a new instance of the UserChangingEventArgs class.

public UserChangingEventArgs(IUser currentUser, IUser newUser)

Parameters

currentUser IUser

The old (current) user.

newUser IUser

The new user.

Properties

CurrentUser

Gets the old (current) user.

public IUser CurrentUser { get; }

Property Value

IUser

NewUser

Gets the new user.

public IUser NewUser { get; }

Property Value

IUser