Click or drag to resize
DataRecordContainerTryGetValue Method
Tries to retrieve the value of a column identified by its name. The returned value indicates whether the columnName exists within this record container.

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 13.0.131
Syntax
C#
public bool TryGetValue(
	string columnName,
	out Object value
)

Parameters

columnName
Type: SystemString
Name of column whose value to get.
value
Type: SystemObject
The value of the column, if the column exists. Otherwise null.

Return Value

Type: Boolean
Returns true if columnName is contained in the record container, otherwise returns false.

Implements

IDataContainerTryGetValue(String, Object)
See Also