You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Requests the <see cref="Element"/>s in a <see cref="Branch"/> of a <see cref="Project"/> from the SysML2 model server REST API
135
+
/// Requests the <see cref="IElement"/>s in a <see cref="Branch"/> of a <see cref="Project"/> from the SysML2 model server REST API
136
136
/// </summary>
137
137
/// <param name="project">
138
-
/// The unique identifier of the <see cref="Project"/> that contains the requested <see cref="Element"/>s
138
+
/// The unique identifier of the <see cref="Project"/> that contains the requested <see cref="IElement"/>s
139
139
/// </param>
140
140
/// <param name="commit">
141
-
/// The unique identifier of the <see cref="Commit"/> that contains the requested <see cref="Element"/>s
141
+
/// The unique identifier of the <see cref="Commit"/> that contains the requested <see cref="IElement"/>s
142
142
/// </param>
143
143
/// <param name="element">
144
-
/// The unique identifier of the <see cref="Element"/> to read. In case this is null all <see cref="Element"/>s are read.
144
+
/// The unique identifier of the <see cref="IElement"/> to read. In case this is null all <see cref="IElement"/>s are read.
145
145
/// </param>
146
146
/// <param name="queryParameters">
147
147
/// The <see cref="QueryParameters"/> used to filter the response on the SysML2 model server REST API
@@ -150,18 +150,18 @@ public interface IRestClient
150
150
/// The <see cref="CancellationToken"/> used to cancel the operation
151
151
/// </param>
152
152
/// <returns>
153
-
/// A list of <see cref="Element"/>s that are contained by the specified <see cref="Project"/> and <see cref="Commit"/>, or a single <see cref="Element"/> if so requested
153
+
/// A list of <see cref="IElement"/>s that are contained by the specified <see cref="Project"/> and <see cref="Commit"/>, or a single <see cref="IElement"/> if so requested
/// Requests the root <see cref="Element"/>s in a <see cref="Commit"/> of a <see cref="Project"/> from the SysML2 model server REST API
158
+
/// Requests the root <see cref="IElement"/>s in a <see cref="Commit"/> of a <see cref="Project"/> from the SysML2 model server REST API
159
159
/// </summary>
160
160
/// <param name="project">
161
-
/// The unique identifier of the <see cref="Project"/> that contains the requested <see cref="Element"/>s
161
+
/// The unique identifier of the <see cref="Project"/> that contains the requested <see cref="IElement"/>s
162
162
/// </param>
163
163
/// <param name="commit">
164
-
/// The unique identifier of the <see cref="Commit"/> that contains the requested <see cref="Element"/>s
164
+
/// The unique identifier of the <see cref="Commit"/> that contains the requested <see cref="IElement"/>s
165
165
/// </param>
166
166
/// <param name="queryParameters">
167
167
/// The <see cref="QueryParameters"/> used to filter the response on the SysML2 model server REST API
@@ -170,7 +170,7 @@ public interface IRestClient
170
170
/// The <see cref="CancellationToken"/> used to cancel the operation
171
171
/// </param>
172
172
/// <returns>
173
-
/// A list of <see cref="Element"/>s that are contained by the specified <see cref="Project"/> and <see cref="Commit"/>, or a single <see cref="Element"/> if so requested
173
+
/// A list of <see cref="IElement"/>s that are contained by the specified <see cref="Project"/> and <see cref="Commit"/>, or a single <see cref="IElement"/> if so requested
/// The <see cref="CancellationToken"/> used to cancel the operation
309
309
/// </param>
310
310
/// <returns>
311
-
/// A list of <see cref="Element"/>s that are contained by the specified <see cref="Project"/> and <see cref="Commit"/>, or a single <see cref="Element"/> if so requested
311
+
/// A list of <see cref="IElement"/>s that are contained by the specified <see cref="Project"/> and <see cref="Commit"/>, or a single <see cref="IElement"/> if so requested
@@ -340,13 +340,13 @@ public async Task<IEnumerable<IElement>> RequestElements(Guid project, Guid comm
340
340
}
341
341
342
342
/// <summary>
343
-
/// Requests the root <see cref="Element"/>s in a <see cref="Commit"/> of a <see cref="Project"/> from the SysML2 model server REST API
343
+
/// Requests the root <see cref="IElement"/>s in a <see cref="Commit"/> of a <see cref="Project"/> from the SysML2 model server REST API
344
344
/// </summary>
345
345
/// <param name="project">
346
-
/// The unique identifier of the <see cref="Project"/> that contains the requested <see cref="Element"/>s
346
+
/// The unique identifier of the <see cref="Project"/> that contains the requested <see cref="IElement"/>s
347
347
/// </param>
348
348
/// <param name="commit">
349
-
/// The unique identifier of the <see cref="Commit"/> that contains the requested <see cref="Element"/>s
349
+
/// The unique identifier of the <see cref="Commit"/> that contains the requested <see cref="IElement"/>s
350
350
/// </param>
351
351
/// <param name="queryParameters">
352
352
/// The <see cref="QueryParameters"/> used to filter the response on the SysML2 model server REST API
@@ -355,7 +355,7 @@ public async Task<IEnumerable<IElement>> RequestElements(Guid project, Guid comm
355
355
/// The <see cref="CancellationToken"/> used to cancel the operation
356
356
/// </param>
357
357
/// <returns>
358
-
/// A list of <see cref="Element"/>s that are contained by the specified <see cref="Project"/> and <see cref="Commit"/>, or a single <see cref="Element"/> if so requested
358
+
/// A list of <see cref="IElement"/>s that are contained by the specified <see cref="Project"/> and <see cref="Commit"/>, or a single <see cref="IElement"/> if so requested
0 commit comments