Click or drag to resize
AbstractHierarchicalObjectTObjectCombineWith Method
Combines current instance with other properties (modifies current instace!). List properties are merged from all the participating typeinfos, other properties are taken as first non-null value (non-null is determined by nullValues collection).

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 8.2.23
Syntax
C#
public void CombineWith(
	List<string> excludedProperties,
	List<Object> nullValues,
	params TObject[] objToMergeWith
)

Parameters

excludedProperties
Type: System.Collections.GenericListString
Properties which should be ignored by the merging process
nullValues
Type: System.Collections.GenericListObject
Values which are considered as null values (value not specified)
objToMergeWith
Type: TObject
Objects to be merged with current instance
See Also