|   | ConfigurationCellCollectionTryGetByIDLabel Method | 
        
        
        
        Namespace: GSF.PhasorProtocolsAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.257-beta
 Syntax
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);
Parameters
- 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
See Also