|
ConfigurationCellCollectionTryGetByIDLabel Method
|
Namespace: GSF.PhasorProtocolsAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.248-beta
Syntaxpublic virtual bool TryGetByIDLabel(
string label,
out IConfigurationCell configurationCell
)
Public Overridable Function TryGetByIDLabel (
label As String,
<OutAttribute> ByRef configurationCell As IConfigurationCell
) As Boolean
public:
virtual bool TryGetByIDLabel(
String^ label,
[OutAttribute] IConfigurationCell^% configurationCell
)
abstract TryGetByIDLabel :
label : string *
configurationCell : IConfigurationCell byref -> bool
override TryGetByIDLabel :
label : string *
configurationCell : IConfigurationCell byref -> bool
function TryGetByIDLabel(label, configurationCell);
View SourceParameters
- label String
- The IDLabel to find.
- configurationCell IConfigurationCell
-
When this method returns, contains the IConfigurationCell with the specified label, if found;
otherwise, null is returned.
Return Value
Booleantrue if the
ConfigurationCellCollection contains an element with the specified
label; otherwise,
false.
See Also