Candor.Tasks.RepeatingWorkerRoleTask.Initialize C# (CSharp) Method

Initialize() public method

Initializes the provider with the specified values.
public Initialize ( string name, NameValueCollection configValue ) : void
name string The name of the provider.
configValue System.Collections.Specialized.NameValueCollection Provider specific attributes.
return void
        public override void Initialize(string name, NameValueCollection configValue)
        {
            base.Initialize(name, configValue);

            WaitingPeriodSeconds = configValue.GetDoubleValue("WaitingPeriodSeconds", 0.0);
        }