Skip to content

Commit f529e10

Browse files
authored
Update README.md
1 parent 9c80050 commit f529e10

File tree

1 file changed

+25
-24
lines changed

1 file changed

+25
-24
lines changed

README.md

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -106,29 +106,7 @@ Each one of the classes in UiPath.Core.Activities have properties that need to b
106106
}
107107
}
108108
```
109-
110-
# The template for contributing
111-
```
112-
public class <ClassName>
113-
{
114-
<Argument Properties>
115-
116-
<Run Method of IDictionary<string,object> type with parameters named after the UiPath Activity Properties>
117-
118-
<Assigning values to InArguments based on parameters>
119-
120-
<Initializing the output dictionary>
121-
<Adding the Arguments to the input dictionary>
122-
123-
<Activity Implementation Body>
124-
125-
<Try Catch Snippet Copy/Paste with changed Text to reflect the activity name>
126-
127-
<Return output dictionary>
128-
129-
}
130-
```
131-
109+
132110

133111
The **Get Text** activity of UiPath.Core.Activities has the following properties:
134112

@@ -165,7 +143,30 @@ public InArgument<int> TimeoutArgument { get; set; }
165143
public InArgument<bool> ContineOnErrorArgument { get; set; }
166144
```
167145
168-
To properly contribute to this project you have to create each of the activities found in UiPath.Core.Activities by using the template provided in the snippet above by writing the class inside of the **UiPathCodeWorks.cs** file
146+
To properly contribute to this project you have to create each of the activities found in UiPath.Core.Activities by using the template provided in the snippet below and by writing the class inside of the **UiPathCodeWorks.cs** file
147+
148+
# Class Template
149+
```
150+
public class <ClassName>
151+
{
152+
<Argument Properties>
153+
154+
<Run Method of IDictionary<string,object> type with parameters named after the UiPath Activity Properties>
155+
156+
<Assigning values to InArguments based on parameters>
157+
158+
<Initializing the output dictionary>
159+
<Adding the Arguments to the input dictionary>
160+
161+
<Activity Implementation Body>
162+
163+
<Try Catch Snippet Copy/Paste with changed Text to reflect the activity name>
164+
165+
<Return output dictionary>
166+
167+
}
168+
```
169+
169170

170171
# What are the advantages of using the coding framework over UiPath Studio traditional method?
171172

0 commit comments

Comments
 (0)