CommunicationSystemGetLinkBudgetEvaluator Method (IServiceProvider, IntendedSignalStrategy) | 
 
            Gets an evaluator for link budget data for the given link and intended signal strategy.
            
 
    Namespace: 
   AGI.Foundation.Communications
    Assembly:
   AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic Evaluator<LinkBudget> GetLinkBudgetEvaluator(
	IServiceProvider link,
	IntendedSignalStrategy intendedSignal
)
Public Function GetLinkBudgetEvaluator ( 
	link As IServiceProvider,
	intendedSignal As IntendedSignalStrategy
) As Evaluator(Of LinkBudget)
public:
Evaluator<LinkBudget^>^ GetLinkBudgetEvaluator(
	IServiceProvider^ link, 
	IntendedSignalStrategy^ intendedSignal
)
member GetLinkBudgetEvaluator : 
        link : IServiceProvider * 
        intendedSignal : IntendedSignalStrategy -> Evaluator<LinkBudget> 
Parameters
- link
 - Type: SystemIServiceProvider
The service provider that implements ILinkService. - intendedSignal
 - Type: AGI.Foundation.Communications.SignalProcessingIntendedSignalStrategy
The strategy used to define the intended signal. 
Return Value
Type: 
EvaluatorLinkBudgetAn evaluator for 
LinkBudget data.
Remarks
            Note that when the evaluator is created, 
CreatePropagationGraph will be called,
            which performs operations that may throw exceptions.
            
See Also