Click or drag to resize

IConnectorProperties Property

Gets or sets the Connector properties.

Namespace:  MicroFocus.ZFE.Connector
Assembly:  MicroFocus.ZFE.Connector (in MicroFocus.ZFE.Connector.dll) Version: 1.4.444.0 (1.4.444.0)
Syntax
IZfeProperties Properties { get; set; }

Property Value

Type: IZfeProperties
Remarks
Note that getting the ZfeProperties object returns a copy. In order to update or change the Connector's properties use the Properties getter, manipulate as desired and use the Properties setter to apply the new configuration.
Examples
Dim props as ZfeProperties
Set props = myConnector.Properties
props.SetProperty(...)
props.RemoveProperty(...)
...
Set myConnector.Properties = props
See Also