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