Click or drag to resize
Grid Solutions Framework

Dnp3OutputAdapterInitialize Method

Initializes OutputAdapterBase.

Namespace: DNP3Adapters
Assembly: Dnp3Adapters (in Dnp3Adapters.dll) Version: 2.4.256-beta
Syntax
public override void Initialize()
View Source

Implements

ISupportLifecycleInitialize
ISupportLifecycleInitialize
ISupportLifecycleInitialize
Remarks

Typical implementation of Initialize should allow the object state to be initialized only once. Initialize should be called automatically from one or more key entry points of the object. For example, if the object is a Component and it implements the ISupportInitialize interface then Initialize should be called from the EndInit method so that the object gets initialized automatically when consumed through the IDE designer surface. In addition to this Initialize should also be called from key or mandatory methods of the object, like 'Start()' or 'Connect()', so that the object gets initialized even when not consumed through the IDE designer surface.

See Also