Class ObjectTypeInfo
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Object type info structure.
public class ObjectTypeInfo : AbstractHierarchicalObject<ObjectTypeInfo>, IDataContainer, ISimpleDataContainer, IVirtualHierarchicalObject, IHierarchicalObject, INameIndexable
- Inheritance
-
objectObjectTypeInfo
- Implements
- Derived
- Inherited Members
- Extension Methods
Constructors
ObjectTypeInfo(Type, string, string, string, string, string, string, string, string, string, string)
Initializes a new instance of the ObjectTypeInfo class.
public ObjectTypeInfo(Type providerType, string objectType, string objectClassName, string idColumn, string timeStampColumn, string guidColumn, string codeNameColumn, string displayNameColumn, string binaryColumn, string parentIDColumn, string parentObjectType)
Parameters
providerType
TypeThe type of the object's InfoProvider class. Required for all object types.
objectType
stringThe primary identifier string for the object type. Required for all object types.
objectClassName
stringThe code name assigned to the matching module class in the administration interface. Required for all object types.
idColumn
stringThe name of the class field (column) that stores the IDs of objects (primary key). Can be null in rare cases, for example binding objects without an identity column.
timeStampColumn
stringThe name of the class field (column) that stores the last modification date for objects.
guidColumn
stringThe name of the class field (column) that stores the GUID identifiers of objects.
codeNameColumn
stringThe name of the class field (column) that stores the unique text identifiers of objects. Can be null for object types without a dedicated code name column.
displayNameColumn
stringThe name of the class field (column) that stores the names of objects used in the administration interface and on the live site.
binaryColumn
stringThe name of the class field (column) that stores binary data for objects.
parentIDColumn
stringThe name of the class field (column) that stores the IDs of parent objects. Null for object types without a parent object.
parentObjectType
stringThe object type name of the parent. Null for object types without a parent object.
ObjectTypeInfo(Type, string, string, string, string, string, string, string, string, string, string, string)
Initializes a new instance of the ObjectTypeInfo class.
[Obsolete("Use ctor without siteIDColumn instead.")]
[ObsoleteSince(27, 0)]
public ObjectTypeInfo(Type providerType, string objectType, string objectClassName, string idColumn, string timeStampColumn, string guidColumn, string codeNameColumn, string displayNameColumn, string binaryColumn, string siteIDColumn, string parentIDColumn, string parentObjectType)
Parameters
providerType
TypeThe type of the object's InfoProvider class. Required for all object types.
objectType
stringThe primary identifier string for the object type. Required for all object types.
objectClassName
stringThe code name assigned to the matching module class in the administration interface. Required for all object types.
idColumn
stringThe name of the class field (column) that stores the IDs of objects (primary key). Can be null in rare cases, for example binding objects without an identity column.
timeStampColumn
stringThe name of the class field (column) that stores the last modification date for objects.
guidColumn
stringThe name of the class field (column) that stores the GUID identifiers of objects.
codeNameColumn
stringThe name of the class field (column) that stores the unique text identifiers of objects. Can be null for object types without a dedicated code name column.
displayNameColumn
stringThe name of the class field (column) that stores the names of objects used in the administration interface and on the live site.
binaryColumn
stringThe name of the class field (column) that stores binary data for objects.
siteIDColumn
stringThe name of the class field (column) that stores site IDs for site-related objects. Only use the site ID column if the object does not have a separate binding object type for the site relationship.
parentIDColumn
stringThe name of the class field (column) that stores the IDs of parent objects. Null for object types without a parent object.
parentObjectType
stringThe object type name of the parent. Null for object types without a parent object.
Fields
COLUMN_NAME_UNKNOWN
Uknown column name.
public const string COLUMN_NAME_UNKNOWN = "[Unknown]"
Field Value
- string
VALUE_UNKNOWN
Uknown value.
public const string VALUE_UNKNOWN = "[Unknown]"
Field Value
- string
Properties
AssemblyNameColumn
The name of the class field (column) that stores the assembly name of a related class in the project's code.
[RegisterColumn]
[Obsolete("Property is deprecated and will be removed in next version")]
[ObsoleteSince(28, 0)]
public string AssemblyNameColumn { get; set; }
Property Value
- string
BinaryColumn
The name of the class field (column) that stores binary data for objects.
[RegisterColumn]
public string BinaryColumn { get; set; }
Property Value
- string
BindingObjectTypes
Gets list of binding object types.
[RegisterProperty]
public virtual List<string> BindingObjectTypes { get; }
Property Value
- List<string>
CategoryIDColumn
Category ID column name.
public string CategoryIDColumn { get; }
Property Value
- string
CategoryObject
Empty read-only instance of the category object (if this type has a category object) For example settings key will have a SettingsCategoryInfo object here.
public BaseInfo CategoryObject { get; }
Property Value
CheckDependenciesOnDelete
If true, the system prevents objects of the type from being deleted if they are the target of a required reference for at least one other object in the system. Applies to object types that are the target of a Required type reference from another object type. The CheckDependencies procedure is first called within the remove dependencies procedure and if there are some, the remove dependencies procedure throws an exception and does not continue.
[RegisterColumn]
public bool CheckDependenciesOnDelete { get; set; }
Property Value
- bool
ChildDependencyColumns
Name of the columns (separated by semicolon) of object dependencies which should be included into the parent data (for example class data for BizForms).
[RegisterColumn]
public string ChildDependencyColumns { get; set; }
Property Value
- string
ChildObjectTypes
Gets list of child object types.
[RegisterProperty]
public virtual List<string> ChildObjectTypes { get; }
Property Value
- List<string>
ClassStructureInfo
Class structure information. If not set explicitly, it is retrieved automatically by class name.
[RegisterColumn]
public virtual ClassStructureInfo ClassStructureInfo { get; set; }
Property Value
CodeNameColumn
The name of the class field (column) that stores the unique text identifiers of objects. Can be null for object types without a dedicated code name column.
[RegisterColumn]
public string CodeNameColumn { get; set; }
Property Value
- string
ColumnsInvalidated
Indicates whether column names are invalidated. Default is false.
public bool ColumnsInvalidated { get; set; }
Property Value
- bool
CompositeObjectType
Composite object type - type of the object which is a composite object for this object type.
[RegisterColumn]
public string CompositeObjectType { get; set; }
Property Value
- string
ConsistsOf
Defines the list of object types that are part of this composite object. If the object is not a composite object, this property is not initialized.
[RegisterProperty]
public virtual ICollection<string> ConsistsOf { get; set; }
Property Value
- ICollection<string>
ContinuousIntegrationSettings
Determines how the object behaves within continuous integration. Set through the properties of the ContinuousIntegrationSettings class.
[RegisterProperty]
public ContinuousIntegrationSettings ContinuousIntegrationSettings { get; }
Property Value
DefaultData
Default data exported within installation. Affects default data and web template data export.
public DefaultDataSettings DefaultData { get; set; }
Property Value
Remarks
This property is for internal use only and should not be used in custom code.
DefaultOrderBy
Default order by clause for getting data.
[RegisterColumn]
public string DefaultOrderBy { get; set; }
Property Value
- string
DeleteAsDependency
Indicates if object should be deleted when removing dependencies of other object.
[RegisterProperty]
public bool DeleteAsDependency { get; set; }
Property Value
- bool
DeleteObjectWithAPI
If true, the object is always deleted using API methods in the remove dependencies phase, not the generated queries. Use for objects where additional actions are performed during deletion. Default is false.
[RegisterColumn]
public bool DeleteObjectWithAPI { get; set; }
Property Value
- bool
DependsOn
List of ObjectDependency instances that define references (foreign keys) pointing to other objects that are directly visible. Allows the system to maintain referential integrity of relationships when importing objects, or perform chain deleting of objects together with referenced objects. Do not include parent references that are specified by the ParentIDColumn property.
[RegisterProperty]
public IEnumerable<ObjectDependency> DependsOn { get; set; }
Property Value
- IEnumerable<ObjectDependency>
Remarks
For foreign keys of objects belonging to other modules not visible by this module, define the reference externally using the Extends property in the type info of the related object.
DependsOnIndirectly
List of object types on which this object type depends on indirectly. Indirectly means there is no column with reference pointing to object of specified object type. Allows the system to maintain chain of dependencies between object types. Do not include direct dependencies like parent or dependencies specified by DependsOn.
[RegisterProperty]
[Obsolete("Property is deprecated and will be removed in next version")]
[ObsoleteSince(28, 0)]
public IEnumerable<string> DependsOnIndirectly { get; set; }
Property Value
- IEnumerable<string>
DisplayNameColumn
The name of the class field (column) that stores the visible names of objects (names used in the administration interface or on the live site).
[RegisterColumn]
public string DisplayNameColumn { get; set; }
Property Value
- string
EnabledColumn
The name of the class field (column) that indicates whether objects are enabled or disabled.
[RegisterColumn]
public string EnabledColumn { get; set; }
Property Value
- string
Events
Events handled by object of this type
public TypeInfoEvents Events { get; }
Property Value
Extends
List of ExtraColumn instances that extend other object types by defining a reference (foreign key) pointing to this object type. Allows the system to maintain referential integrity of relationships when importing objects, or perform chain deleting of objects together with referenced objects.
[RegisterProperty]
public IEnumerable<ExtraColumn> Extends { get; set; }
Property Value
- IEnumerable<ExtraColumn>
Remarks
If possible, use the DependsOn property to define the reference directly in the type info of the related object type.
ExtensionColumn
Intended for object types that store binary data. Sets the name of the class field (column) that stores the extension type of the binary data.
[RegisterColumn]
public string ExtensionColumn { get; set; }
Property Value
- string
Feature
Get/sets info's feature for license check
[RegisterColumn]
public FeatureEnum Feature { get; set; }
Property Value
FormDefinitionColumn
Form definition column name
[Obsolete("Property is deprecated and will be removed in next version")]
[ObsoleteSince(30, 1)]
public string FormDefinitionColumn { get; set; }
Property Value
- string
GUIDColumn
The name of the class field (column) that stores the GUID identifiers of objects.
[RegisterColumn]
public string GUIDColumn { get; set; }
Property Value
- string
HasAutomaticProperties
If true, the object of this type has got some automatic properties
[RegisterColumn]
public bool HasAutomaticProperties { get; set; }
Property Value
- bool
HasProcesses
If true, the processes can be run on the objects. By default no processes to simplify general processes.
[RegisterColumn]
public bool HasProcesses { get; set; }
Property Value
- bool
HasScheduledTasks
If true, the scheduled tasks can be run on the objects. By default no scheduled tasks to simplify general processes.
[RegisterColumn]
public bool HasScheduledTasks { get; set; }
Property Value
- bool
IDColumn
The name of the class field (column) that stores the IDs of objects (i.e. the primary key column). Can be null in rare cases, for example binding objects without an identity column.
[RegisterColumn]
public string IDColumn { get; set; }
Property Value
- string
IsBinding
Indicates whether the object type represents a relationship between two or more object types. Setting to true forces the object type to behave as a binding.
[RegisterColumn]
public bool IsBinding { get; set; }
Property Value
- bool
IsCategory
Indicates whether the object type represents a category for organizing other objects in a tree hierarchy (for example web part categories). The default value is false.
[RegisterColumn]
public bool IsCategory { get; set; }
Property Value
- bool
IsComposite
Returns true if object is a composite object. Object consists of several partial objects.
[RegisterColumn]
public bool IsComposite { get; }
Property Value
- bool
IsDataObjectType
Indicates if the object is dynamic based on data in the DB (e.g. custom table item or biz form item object types).
[RegisterColumn]
[Obsolete("Property was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public bool IsDataObjectType { get; set; }
Property Value
- bool
IsMainObject
Indicates if the object is main (= is not child of other objects).
[RegisterColumn]
public bool IsMainObject { get; set; }
Property Value
- bool
LastObjectInvalidated
Last time of the object invalidation.
public DateTime LastObjectInvalidated { get; }
Property Value
- DateTime
LogEvents
Indicates whether the system logs events into the Event log when objects of the type are updated. False by default.
[RegisterColumn]
public bool LogEvents { get; set; }
Property Value
- bool
MacroSettings
Determines how the system processes macros contained in the fields of the given type. Set through the properties of the MacroProcessingSettings class.
public MacroProcessingSettings MacroSettings { get; }
Property Value
MaxCodeNameLength
Maximum length of the object code name.
[RegisterColumn]
public int MaxCodeNameLength { get; set; }
Property Value
- int
MimeTypeColumn
Intended for object types that store binary data. Sets the name of the class field (column) that stores the mime type of the binary data.
[RegisterColumn]
[Obsolete("Property is deprecated and will be removed in next version")]
[ObsoleteSince(28, 0)]
public string MimeTypeColumn { get; set; }
Property Value
- string
ModuleName
The code name of the module under which the object type belongs. Always required for all object type information definitions.
[RegisterColumn]
[Obsolete("Property is deprecated and will be removed in next version")]
[ObsoleteSince(28, 0)]
public string ModuleName { get; set; }
Property Value
- string
NestedInfoTypes
List of nested info object types that contain the data internally
public List<string> NestedInfoTypes { get; set; }
Property Value
- List<string>
ObjectClassName
The code name assigned to the matching module class in the Kentico administration interface. Identifies the object types's definition in the database. Required for all object types.
[RegisterColumn]
public string ObjectClassName { get; set; }
Property Value
- string
ObjectDependencies
Object dependencies (list of foreign keys definition of the object with the exception of ParentID columns). Automatically computed from DependsOn and Extends lists of all objects within the system.
[RegisterProperty]
public IEnumerable<ObjectDependency> ObjectDependencies { get; }
Property Value
- IEnumerable<ObjectDependency>
ObjectIDPathSettings
Intended for objects that have a hierarchical tree structure. Sets the path settings with a column that stores the path of objects in the hierarchy structure (consisting of object IDs) and optional scope for uniqueness of the path value.
public PathSettings ObjectIDPathSettings { get; set; }
Property Value
ObjectLevelColumn
Intended for objects that have a hierarchical tree structure. Sets the name of the class field (column) that stores the depth of objects in the hierarchy structure.
[RegisterColumn]
public string ObjectLevelColumn { get; set; }
Property Value
- string
ObjectNamePathSettings
Intended for objects that have a hierarchical tree structure. Sets the path settings with a column that stores the path of objects in the hierarchy structure (consisting of object names) and optional scope for uniqueness of the path value.
public PathSettings ObjectNamePathSettings { get; set; }
Property Value
ObjectPathSettings
Intended for objects that have a hierarchical tree structure. Sets the path settings with a column that stores the path of objects in the hierarchy structure and optional scope for uniqueness of the path value. You can also set the path settings separately for paths built out of objects names or object IDs through the ObjectNamePathSettings and ObjectIDPathSettings properties.
public PathSettings ObjectPathSettings { get; set; }
Property Value
ObjectType
The primary identifier string for the object type. This identifier is used to select object types in the API, user interface components (UniGrid, UniSelector), REST calls, etc. Required for all object types.
[RegisterColumn]
public string ObjectType { get; set; }
Property Value
- string
OrderColumn
The name of the class field (column) that stores the order of objects (for object types that have a defined order). Allows automatic actions for changing object order on listing pages (in UniGrid components).
[RegisterColumn]
public string OrderColumn { get; set; }
Property Value
- string
OriginalObjectType
Original object type of virtual object types. For normal object type it's same as object type.
[RegisterColumn]
public string OriginalObjectType { get; }
Property Value
- string
OriginalTypeInfo
Original object type of virtual object types. For normal object type it's null.
[RegisterProperty]
public ObjectTypeInfo OriginalTypeInfo { get; set; }
Property Value
OtherBindingObjectTypes
Gets list of other binding types - binding types where this object participate but is not parent object of those binding types.
[RegisterProperty]
public virtual List<string> OtherBindingObjectTypes { get; }
Property Value
- List<string>
ParentIDColumn
The name of the class field (column) that stores the IDs of parent objects. Null for object types without a parent object.
[RegisterColumn]
public string ParentIDColumn { get; set; }
Property Value
- string
ParentObjectType
The object type name of the parent (as defined in the type information of the parent object type). Null for object types without a parent object.
[RegisterColumn]
public string ParentObjectType { get; set; }
Property Value
- string
ParentTypeInfo
Gets the ObjectTypeInfo instance representing the parent object type.
public ObjectTypeInfo ParentTypeInfo { get; }
Property Value
ProviderObject
Gets an instance of the provider class set for the object type (specified by the ProviderType property).
public IInfoProvider ProviderObject { get; }
Property Value
ProviderType
The type of the object's InfoProvider class. Required for all object types.
public Type ProviderType { get; set; }
Property Value
- Type
ReferenceColumnNames
Names of the columns that reference some object.
[RegisterProperty]
public List<string> ReferenceColumnNames { get; }
Property Value
- List<string>
Remarks
Includes the ParentIDColumn and ObjectDependencies (except the dynamic object type dependencies, see HasDynamicObjectType()).
RegisterAsBindingToObjectTypes
If set (= not null), than the automatic process of registering the object type in the BindingObjectTypes list is bypassed and the registration is forced to the specified types in this list.
public List<string> RegisterAsBindingToObjectTypes { get; set; }
Property Value
- List<string>
RegisterAsChildToObjectTypes
If set (= not null), then the automatic process of registering the object type in the ChildObjectTypes list is bypassed and the registration is forced to the types specified in this list. Only use if you need to register multiple parent types (if the parent has multiple type info definitions).
public List<string> RegisterAsChildToObjectTypes { get; set; }
Property Value
- List<string>
RegisterAsOtherBindingToObjectTypes
If set (= not null), than the automatic process of registering the object type in the OtherBindingObjectTypes list is bypassed and the registration is forced to the specified types in this list.
public List<string> RegisterAsOtherBindingToObjectTypes { get; set; }
Property Value
- List<string>
RelatedTypeInfos
Returns list of related TypeInfos of this TypeInfo (the relationship is made from OriginalTypeInfo property, but reflects the relationship from both sides).
public IEnumerable<string> RelatedTypeInfos { get; }
Property Value
- IEnumerable<string>
RequiredObject
If true, the object is required when imported / synchronized. If false, the object can be skipped when some error occurs. Default is true.
[RegisterColumn]
public bool RequiredObject { get; set; }
Property Value
- bool
ResourceIDColumn
The name of the class field (column) that stores ID referencing a module (resource) in Kentico. Intended for object types whose objects have a relationship with a specific module.
[RegisterColumn]
[Obsolete("Property is deprecated and will be removed in next version")]
[ObsoleteSince(28, 0)]
public string ResourceIDColumn { get; set; }
Property Value
- string
SensitiveColumns
Specifies a list of class fields (columns) that the system excludes from the macro engine, data retrieved by the REST service and event logging. Can be used to protect fields with sensitive values, for example passwords.
[RegisterProperty]
public List<string> SensitiveColumns { get; set; }
Property Value
- List<string>
SerializationSettings
Determines how the system serializes objects of the given type from the database into XML files. Set through the properties of the SerializationSettings class.
[RegisterProperty]
public SerializationSettings SerializationSettings { get; }
Property Value
SizeColumn
Intended for object types that store binary data. Sets the name of the class field (column) that stores the size of the binary data.
[RegisterColumn]
[Obsolete("Property is deprecated and will be removed in next version")]
[ObsoleteSince(28, 0)]
public string SizeColumn { get; set; }
Property Value
- string
SupportsCloning
Indicates whether the system allows cloning for objects of the given type. True by default.
[RegisterColumn]
public bool SupportsCloning { get; set; }
Property Value
- bool
SupportsInvalidation
If true, the object is automatically invalidated upon it's change. Default is false.
[RegisterColumn]
public bool SupportsInvalidation { get; set; }
Property Value
- bool
TimeStampColumn
The name of the class field (column) that stores the last modification date for objects.
[RegisterColumn]
public string TimeStampColumn { get; set; }
Property Value
- string
TouchCacheDependencies
Indicates whether the corresponding dummy cache keys (dependencies) are touched when an object of the type is modified. This causes the cache to delete all items that depend on the given dummy keys. The default value is false.
[RegisterColumn]
public bool TouchCacheDependencies { get; set; }
Property Value
- bool
TypeCondition
Condition which can distinguish between several object types within one Info class. This is used for two purposes - first to generate correct type WHERE condition which is used in GetData (for example) and for correct object initialization when creating empty BaseInfo objects for the specified object type. If you need to specify a more complex WHERE condition, use the WhereCondition property which has higher priority.
[RegisterColumn]
public TypeCondition TypeCondition { get; set; }
Property Value
UpdateTimeStamp
If true, timestamp of the object is updated when saved.
[RegisterColumn]
public bool UpdateTimeStamp { get; set; }
Property Value
- bool
UseUpsert
Indicates whether the object can use upsert. If not set, the value is inferred from IsBinding (only binding objects can use upsert by default). Setting this property to any value overrides the default behavior.
[RegisterColumn]
public bool UseUpsert { get; set; }
Property Value
- bool
Remarks
When set to true, objects with ID value set are updated as usual. If their ID is not set, then upsert is used.
WhereCondition
Default where condition restricting the data of this particular object type.
[RegisterColumn]
public string WhereCondition { get; }
Property Value
- string
WorkspaceIDColumn
Sets the name of the class field (column) that stores the workspace ID.
[RegisterColumn]
public string WorkspaceIDColumn { get; set; }
Property Value
- string
Methods
ApplyTypeCondition(IDataContainer)
Applies condition defined in TypeCondition property to the given info. Returns info without changes if TypeCondition is null.
public void ApplyTypeCondition(IDataContainer info)
Parameters
info
IDataContainerInfo to apply condition to
AreChildrenInvalid(int, DateTime)
Returns true if the direct child objects are invalid.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public bool AreChildrenInvalid(int parentId, DateTime lastValid)
Parameters
parentId
intParent object ID
lastValid
DateTimeTime when the objects was last known as valid
Returns
- bool
ChildrenInvalidated(int, bool)
Invalidates direct child objects of specific parent.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public void ChildrenInvalidated(int parentId, bool logTask = true)
Parameters
parentId
intParent object ID
logTask
boolIf true web farm task is logged
CopyEventsTo(ObjectTypeInfo)
Copies the event's hooks from current ObjectTypeInfo to specified one.
protected void CopyEventsTo(ObjectTypeInfo info)
Parameters
info
ObjectTypeInfoTarget.
Remarks
Do not use in custom code!
CreateWhereCondition()
Gets a new empty where condition for this object type
public WhereCondition CreateWhereCondition()
Returns
GetBindingColumns(bool)
Gets the list of columns representing binding.
public List<string> GetBindingColumns(bool includeParent = true)
Parameters
includeParent
boolIf true, the result includes the parent column
Returns
- List<string>
GetDependencyForColumn(string)
Gets the dependency settings for the given column or null if the settings is not found or unknown.
public ObjectDependency GetDependencyForColumn(string columnName)
Parameters
columnName
stringColumn name to check
Returns
GetDependencyWhereCondition(string, string, params Tuple<string, int?>[])
Gets the where condition to limit the objects to specific dependencies.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(29, 2)]
public WhereCondition GetDependencyWhereCondition(string dependencyType, string op, params Tuple<string, int?>[] dependencies)
Parameters
dependencyType
stringDependency object type name
op
stringOperator
dependencies
Tuple<string, int?>[]Pairs of dependencies to filter by (first item in each pair - dependency object type, second item in each pair - dependency value)
Returns
Exceptions
- ObjectTypeColumnNotFoundException
If dependency column is not found by object type
GetFirstKnownColumn(params string[])
Gets the first known column from the given list of columns
public static string GetFirstKnownColumn(params string[] columns)
Parameters
columns
string[]Columns to select from
Returns
- string
GetNiceObjectTypeName()
Gets the nice object type name for this type
public virtual string GetNiceObjectTypeName()
Returns
- string
GetObjectTypeForColumn(string)
Gets the object type for the given column or null if the object type is not found or unknown.
public string GetObjectTypeForColumn(string columnName)
Parameters
columnName
stringColumn name to check
Returns
- string
GetTypeColumns(ObjectTypeInfo)
Returns column name collection of specified object type.
public ICollection<string> GetTypeColumns(ObjectTypeInfo typeInfo)
Parameters
typeInfo
ObjectTypeInfoType info
Returns
- ICollection<string>
InvalidateAllObjects()
Invalidates all objects of this type.
public void InvalidateAllObjects()
InvalidateAllObjects(bool)
Invalidates all objects of this type.
public void InvalidateAllObjects(bool logTask)
Parameters
logTask
boolIf true, web farm task is logged
InvalidateColumnNames()
Invalidates column names.
public void InvalidateColumnNames()
InvalidateColumnNames(bool)
Invalidates column names.
public void InvalidateColumnNames(bool logTask)
Parameters
logTask
bool
IsForeignKey(string)
Indicates if given column is foreign key.
public bool IsForeignKey(string columnName)
Parameters
columnName
stringColumn name
Returns
- bool
IsObjectInvalid(int, DateTime)
Returns true if the object is invalid.
public bool IsObjectInvalid(int objectId, DateTime lastValid)
Parameters
objectId
intObject ID
lastValid
DateTimeTime when the object was last known as valid
Returns
- bool
ObjectInvalidated(int, bool)
Invalidates specific object.
public void ObjectInvalidated(int objectId, bool logTask = true)
Parameters
objectId
intObject ID to invalidate
logTask
boolIf true web farm task is logged
RegisterColumns()
Registers the Columns of this object
protected override void RegisterColumns()