Table of Contents

Class SystemFieldCollection

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

Represents system field colection

public class SystemFieldCollection : List<SystemField>, IList<SystemField>, ICollection<SystemField>, IReadOnlyList<SystemField>, IReadOnlyCollection<SystemField>, IEnumerable<SystemField>, IList, ICollection, IEnumerable
Inheritance
SystemFieldCollection
Implements
Inherited Members
Extension Methods

Methods

ContainsSystemField(SystemField)

Shows if current collection contains specific item

public bool ContainsSystemField(SystemField systemField)

Parameters

systemField SystemField

SystemField

Returns

bool

True if specified object instance presents in collection

GetById(string, string)

Gets item from collection

public SystemField GetById(string tableName, string systemName)

Parameters

tableName string

System field table name

systemName string

System field system name

Returns

SystemField

SystemField

Remove(SystemField)

Removes item from current collection

public bool Remove(SystemField item)

Parameters

item SystemField

Item to be deleted

Returns

bool

True if item was successfuly deleted

To top