AbstractServiceApplySettings Method  | 
 
            Applies the settings. used when Test Framework initializes or user changes the settings related to this service.
            When this class is inherited. make sure to call 
1base.ApplySettings(appliedParameters)
 in derived class.
            
 
    Namespace: 
   Hummingbird.TestFramework.Services
    Assembly:
   Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntaxpublic virtual void ApplySettings(
	IEnumerable<Parameter> appliedParameters
)
Public Overridable Sub ApplySettings ( 
	appliedParameters As IEnumerable(Of Parameter)
)
public:
virtual void ApplySettings(
	IEnumerable<Parameter^>^ appliedParameters
)
abstract ApplySettings : 
        appliedParameters : IEnumerable<Parameter> -> unit 
override ApplySettings : 
        appliedParameters : IEnumerable<Parameter> -> unit Parameters
- appliedParameters
 - Type: System.Collections.GenericIEnumerableParameter
The parameters and values to take account by the service. 
See Also