Table of Contents

Class AuditUserInfo

Namespace
Dynamicweb.Security.UserManagement
Assembly
Dynamicweb.Core.dll

Class AuditUserInfo

public class AuditUserInfo
Inheritance
AuditUserInfo
Inherited Members

Properties

CreatedBy

Gets the created by user id

public int CreatedBy { get; }

Property Value

int

CreatedByUser

Gets the created by user.

public string CreatedByUser { get; }

Property Value

string

The created by user.

CreatedOn

Gets the created on.

public DateTime? CreatedOn { get; }

Property Value

DateTime?

The created on.

EmailPermissionGivenOn

Gets the email permission given on.

public DateTime? EmailPermissionGivenOn { get; }

Property Value

DateTime?

The email permission given on.

EmailPermissionUpdatedOn

Gets the email permission updated on.

public DateTime? EmailPermissionUpdatedOn { get; }

Property Value

DateTime?

The email permission updated on.

LastLogOnOn

Gets the last login on.

public DateTime? LastLogOnOn { get; }

Property Value

DateTime?

The last login in .

UpdatedBy

Gets the updated by user id

public int UpdatedBy { get; }

Property Value

int

UpdatedByUser

Gets the updated by user.

public string UpdatedByUser { get; }

Property Value

string

The updated by user.

UpdatedOn

Gets the updated on.

public DateTime? UpdatedOn { get; }

Property Value

DateTime?

The updated on.

Methods

NotifyEmailPermissionUpdated(bool)

Notifies the email permission updated.

public void NotifyEmailPermissionUpdated(bool newValue)

Parameters

newValue bool

if set to true [new value].

NotifyUserSaving(bool)

Notifies the user saving.

public void NotifyUserSaving(bool isNewUser)

Parameters

isNewUser bool

if set to true [is new user].

NotifyUserSaving(bool, bool)

Notifies the user saving.

public void NotifyUserSaving(bool isNewUser, bool fromImport)

Parameters

isNewUser bool

if set to true [is new user].

fromImport bool

True if save is coming from import user.

To top