Initializes a service plugin.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
bool Initialize(
	SerializableDictionary<string, string> settings
)
Visual Basic (Declaration)
Function Initialize ( _
	settings As SerializableDictionary(Of String, String) _
) As Boolean
Visual C++
bool Initialize(
	SerializableDictionary<String^, String^>^ settings
)

Parameters

settings
Type: SerializableDictionary<(Of <(String, String>)>)
A dictionary with the plugin's custom settings.

Return Value

True if successful, false if there was an error.

Remarks

If a plugin returns false from this method, the GetError()()() method should return a description of the failure.

See Also