| GroupedPropertyCollectionCanGetGroupValue Method |
Checks, whether this object can retrieve the value for the specified property, or not.
Namespace:
Mastersign.Bench.PropertyCollections
Assembly:
BenchLib (in BenchLib.dll) Version: 0.22.0.0 (0.22.0.0)
Syntax public bool CanGetGroupValue(
string group,
string name
)
Public Function CanGetGroupValue (
group As String,
name As String
) As Boolean
Parameters
- group
- Type: SystemString
The group of the property in question. - name
- Type: SystemString
The name of the property in question.
Return Value
Type:
Booleantrue if this object can get the value for specified property;
otherwise
false.
Implements
IGroupedPropertySourceCanGetGroupValue(String, String)Remarks
Even when this method returns
true,
it may be the case, that
GetGroupValue(String, String) returns
null,
because the property exists, but the value of the property is
null.
See Also