IScoringService interface
Version Info: This topic applies to Episerver.ConnectForMarketingAutomation 4.0.0 and lower. For later versions, see Sample Connector - IMarketingConnector.
Interface for working with a provider scoring model.
- Namespace. EPiServer.MarketingAutomationIntegration.Services
- Assembly. EPiServer.MarketingAutomationIntegration (in EPiServer.MarketingAutomationIntegration.dll) Version: 2.2.0.9000
- C# syntax.
public interface IScoringService
Methods 
IScoringService.GetAllScoringModels method 
Get available scoring models.
- Namespace. EPiServer.MarketingAutomationIntegration.Services
- Assembly. EPiServer.MarketingAutomationIntegration (in EPiServer.MarketingAutomationIntegration.dll) Version: 2.2.0.9000
- C# syntax.
IEnumerable<ScoringModel> GetAllScoringModels()
- Return value. Type: IEnumerable< ScoringModel>
List of scoring models.
IScoringService.GetAllScoringTypes method 
Get scoring types.
- Namespace. EPiServer.MarketingAutomationIntegration.Services
- Assembly. EPiServer.MarketingAutomationIntegration (in EPiServer.MarketingAutomationIntegration.dll) Version: 2.2.0.9000
- C# syntax.
IEnumerable<KeyValuePair<string, string>> GetAllScoringTypes()
- Return value. Type: IEnumerable< KeyValuePair< String, String>>
List of KeyValuePair that contains information about scoring types.
IScoringService.GetScoringForProfile method 
Get scoring for the input profile.
- Namespace. EPiServer.MarketingAutomationIntegration.Services
- Assembly. EPiServer.MarketingAutomationIntegration (in EPiServer.MarketingAutomationIntegration.dll) Version: 2.2.0.9000
- C# syntax.
IEnumerable<ScoringModelValues> GetScoringForProfile( Profile profile, int modelId )
- Parameters.
- profile. Type: Profile
The profile. - modelId. Type: System. Int32
The scoring model identifier.
- profile. Type: Profile
- Return value. Type: IEnumerable< ScoringModelValues>
List of objects contains scoring information for the profile.
IScoringService.GetScoringRank method 
Get a scoring rank for a scoring model.
- Namespace. EPiServer.MarketingAutomationIntegration.Services
- Assembly. EPiServer.MarketingAutomationIntegration (in EPiServer.MarketingAutomationIntegration.dll) Version: 2.2.0.9000
- C# syntax.
IEnumerable<KeyValuePair<string, string>> GetScoringRank( string scoringModelId )
- Parameters.
- scoringModelId. Type: System. String
The scoring model identifier.
- scoringModelId. Type: System. String
- Return value. Type: IEnumerable< KeyValuePair< String, String>>
List of object ranks.
Last updated: Dec 10, 2015