SettingsGetCustomParameter Method |
returns the value of the parameter in string, if the parameter does not found, returns null
Namespace:
Hummingbird.TestFramework.Configuration
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax public string GetCustomParameter(
Guid StrongName,
string Name
)
Public Function GetCustomParameter (
StrongName As Guid,
Name As String
) As String
public:
String^ GetCustomParameter(
Guid StrongName,
String^ Name
)
member GetCustomParameter :
StrongName : Guid *
Name : string -> string
Parameters
- StrongName
- Type: SystemGuid
Guid, the strong name of the components. - Name
- Type: SystemString
The name of the parameter.
Return Value
Type:
StringThe value of the given parameter. If the parameter name does not exist, the returned value will be null.
See Also