EPTXmlParserBaseSet Method Content Studio 5.7 SDK
Content Studio Web Content Management System

[This is preliminary documentation and is subject to change.]

Sets the value of an entry in the collection of EPT fields

Namespace: ContentStudio.Document.EPT
Assembly: CSServer5 (in CSServer5.dll) Version: 5.7.5016.0 (5.7.5016.0)
Syntax

protected virtual void BaseSet(
	string name,
	string value
)

Parameters

name
Type: SystemString
The String key of the entry to add the new value to. The key cannot be a null reference (Nothing in Visual Basic) or Empty.
value
Type: SystemString
The String that represents the new value to add to the specified entry. The value cannot be a null reference (Nothing in Visual Basic).
Exceptions

ExceptionCondition
ArgumentNullExceptionEither the name or value is null
ArgumentOutOfRangeExceptionThe name is Empty.
Remarks

If the specified key already exists in the collection, this method overwrites the existing list of values with the specified value. To append the new value to the existing list of values, use the Add method. If the specified key does not exist in the collection, this method creates a new entry using the specified key and the specified value.
See Also

Reference