CacheManager.WriterConfig

Ee783984.c++_on(en-US,CS.10).gifEe783984.vb_off(en-US,CS.10).gif

The WriterConfig property is a read/write reference to a Dictionary object that contains configuration information for the Writer component.

Definition

Property WriterConfig(bstrName As String) As IDispatch

Parameters

bstrName

A String that contains the name of a data cache for which Writer component configuration information is being provided or retrieved.

Error Values

This method sets the Number property of the global Err object to S_OK (&H00000000) to indicate success and to standard COM error values to indicate failure. For more information about standard COM errors, see Standard COM Errors. Additional information may be available using the global Err object. In particular, the Description property may contain a text description of the error.

Remarks

This property, a Dictionary object containing configuration information for a particular Writer component, is passed to that Writer component when it is created to report results related to cache usage. When you set this property, the dictionary is shallow cloned and then the CacheManager object stores the clone of the dictionary. This is as opposed to simply storing a reference to the dictionary. Shallow clone means that scalars in the dictionary are copied by value, but other objects in the dictionary are copied by reference. The Writer component needs to implement the IPipelineComponentAdmin interface in order to read the configuration values from the dictionary, and in particular, the SetConfigData method of that interface. The Dictionary object identified by this property is passed to the created Writer component using the SetConfigData method.

See Also

CacheManager Object


All rights reserved.