sdk
latest
false
- Overview
- Custom activities
- Migrating Activities to .NET 6
- Release Notes
- Building Workflow Analyzer Rules
- Building Activities Project Settings
- Creating Custom Wizards
- Prioritize Activities by Scope
- UiPath.Activities.Api.Base
- UiPath.Studio.Activities.Api
- UiPath.Studio.Activities.Api.Activities
- IAnalyzerConfigurationService
- UiPath.Studio.Activities.Api.Analyzer.Rules
- UiPath.Studio.Analyzer.Models
- UiPath.Studio.Activities.Api.BusyService
- UiPath.Studio.Activities.Api.ExpressionEditor
- UiPath.Studio.Activities.Api.Expressions
- UiPath.Studio.Activities.Api.Licensing
- UiPath.Studio.Activities.Api.Mocking
- UiPath.Studio.Activities.Api.ObjectLibrary
- UiPath.Studio.Activities.Api.PackageBindings
- UiPath.Studio.Activities.Api.ProjectProperties
- UiPath.Studio.Activities.Api.ScopedActivities
- UiPath.Studio.Activities.Api.Settings
- UiPath.Studio.Activities.Api.Wizards
- UiPath.Studio.Activities.Api.Workflow
- UiPath.Studio.Api.Controls
- UiPath.Studio.Api.Telemetry
- UiPath.Studio.Api.Theme
- Robot JavaScript SDK
- Triggers SDK
Developer Guide
Last updated Oct 25, 2024
IAnalyzerConfigurationService
Represents a component that allows you to register rules and counters in the Workflow Analyzer.
void AddRule<T>(Rule<T> rule) where T : IInspectionObject
Registers a rule in the Analyzer.
Parameter Type |
Parameter Name |
Generic Type |
Remarks |
---|---|---|---|
Rule<T> |
rule |
IInspectionObject |
An instance of IInspectionObject which represents the rule to be registered. |
void AddCounter<T>(Counter<T> counter) where T : IInspectionObject
Registers a counter in the Analyzer.
Parameter Type |
Parameter Name |
Generic Type |
Remarks |
---|---|---|---|
Counter<T> |
counter |
IInspectionObject |
An instance of IInspectionObject which represents the counter to be registered. |