 | IAnalysis3DResultsGetNodalMeshForcesAsync Method |
Returns nodal mesh forces for a loading ID
Namespace: TSD.API.Remoting.SolverAssembly: TSD.API.Remoting (in TSD.API.Remoting.dll) Version: 24.0.1.45+53a79b69d75fb81c51fcd389e0bdcf241e5b9f7c
SyntaxTask<IEnumerable<INodalMeshForces>> GetNodalMeshForcesAsync(
Guid id,
IEnumerable<int>? indices = null,
CancellationToken cancellationToken = default
)
Function GetNodalMeshForcesAsync (
id As Guid,
Optional indices As IEnumerable(Of Integer) = Nothing,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of IEnumerable(Of INodalMeshForces))
Task<IEnumerable<INodalMeshForces^>^>^ GetNodalMeshForcesAsync(
Guid id,
IEnumerable<int>^ indices = nullptr,
CancellationToken cancellationToken = CancellationToken()
)
abstract GetNodalMeshForcesAsync :
id : Guid *
?indices : IEnumerable<int> *
?cancellationToken : CancellationToken
(* Defaults:
let _indices = defaultArg indices null
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<IEnumerable<INodalMeshForces>> Parameters
- id Guid
- The ID of loading to get nodal mesh forces for
- indices IEnumerableInt32 (Optional)
- The requested indices, null to get all
- cancellationToken CancellationToken (Optional)
- The optional cancellation token
Return Value
TaskIEnumerableINodalMeshForcesA collection of nodal mesh forces
See Also