Table of Contents

Struct UserManagementFormField

Namespace
Dynamicweb.Frontend.UserManagement
Assembly
Dynamicweb.dll

The Structure UMFormField represents entity is used for handling errors related to specific fields

public struct UserManagementFormField
Inherited Members

Constructors

UserManagementFormField(string, string, string)

Initialize new UMFormField with specified form name, nice name and error message

public UserManagementFormField(string formFieldName, string niceName, string errorMessage)

Parameters

formFieldName string

Name used for

niceName string
errorMessage string

Properties

ErrorMessage

Message describing whats gone wrong

public readonly string ErrorMessage { get; }

Property Value

string

FormFieldName

Field name related to form

public readonly string FormFieldName { get; }

Property Value

string

NiceName

Name that is used for UI

public readonly string NiceName { get; }

Property Value

string
To top