sdk
latest
false
- Überblick
- Benutzerdefinierte Aktivitäten
- Migrieren von Aktivitäten zu .NET 6
- Versionshinweise
- Erstellen von Workflow-Analyseregeln
- Projekteinstellungen für das Erstellen von Aktivitäten
- Erstellen benutzerdefinierter Assistenten
- Priorisieren von Aktivitäten nach Scope
- UiPath.Activities.Api.Base
- UiPath.Studio.Activities.Api
- UiPath.Studio.Activities.Api.Activities
- 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
- Trigger SDK
Type: Simple
Wichtig :
Bitte beachten Sie, dass dieser Inhalt teilweise mithilfe von maschineller Übersetzung lokalisiert wurde.
Entwickleranleitung
Last updated 25. Okt. 2024
Type: Simple
Activity Creator
Generierter Code
Simple activities extend the
BaseAsyncCodeActivity
, which simply runs a bit of execution logic and creates the kind of activity seen below. These types of activities do not contain any child activities.
using ...
namespace MyCompany.MyProduct.Activities
{
[LocalizedDisplayName(nameof(Resources.Addition_DisplayName))]
[LocalizedDescription(nameof(Resources.Addition_Description))]
public class Addition : ContinuableAsyncCodeActivity
{
...
}
}
using ...
namespace MyCompany.MyProduct.Activities
{
[LocalizedDisplayName(nameof(Resources.Addition_DisplayName))]
[LocalizedDescription(nameof(Resources.Addition_Description))]
public class Addition : ContinuableAsyncCodeActivity
{
...
}
}
Auswirkungen in UiPath Studio
Einfache Aktivitäten können Felder in ihren Designern anzeigen. Alle erforderlichen Eingabeeigenschaften werden dem Designer hinzugefügt.