|   | ConfigurationCellCollectionTryGetByIDCode Method | 
        
        
        
        Namespace: GSF.PhasorProtocolsAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic virtual bool TryGetByIDCode(
	ushort idCode,
	out IConfigurationCell configurationCell
)
Public Overridable Function TryGetByIDCode ( 
	idCode As UShort,
	<OutAttribute> ByRef configurationCell As IConfigurationCell
) As Boolean
public:
virtual bool TryGetByIDCode(
	unsigned short idCode, 
	[OutAttribute] IConfigurationCell^% configurationCell
)
abstract TryGetByIDCode : 
        idCode : uint16 * 
        configurationCell : IConfigurationCell byref -> bool 
override TryGetByIDCode : 
        idCode : uint16 * 
        configurationCell : IConfigurationCell byref -> bool function TryGetByIDCode(idCode, configurationCell);
Parameters
- idCode  UInt16
- The IDCode to find.
- configurationCell  IConfigurationCell
- 
            When this method returns, contains the IConfigurationCell with the specified idCode, if found;
            otherwise, null is returned.
            
Return Value
Booleantrue if the 
ConfigurationCellCollection contains an element with the specified 
idCode; otherwise, 
false.
 See Also
See Also