GraphApiClientPutEdgeAsyncT Method (String, String, String, T, PutEdgeQuery) |
Replaces the data of an edge in the collection.
PUT /_api/gharial/{graph}/edge/{collection}/{edge}
Namespace:
ArangoDBNetStandard.GraphApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax public virtual Task<PutEdgeResponse<T>> PutEdgeAsync<T>(
string graphName,
string collectionName,
string edgeKey,
T edge,
PutEdgeQuery query = null
)
Public Overridable Function PutEdgeAsync(Of T) (
graphName As String,
collectionName As String,
edgeKey As String,
edge As T,
Optional query As PutEdgeQuery = Nothing
) As Task(Of PutEdgeResponse(Of T))
public:
generic<typename T>
virtual Task<PutEdgeResponse<T>^>^ PutEdgeAsync(
String^ graphName,
String^ collectionName,
String^ edgeKey,
T edge,
PutEdgeQuery^ query = nullptr
)
abstract PutEdgeAsync :
graphName : string *
collectionName : string *
edgeKey : string *
edge : 'T *
?query : PutEdgeQuery
(* Defaults:
let _query = defaultArg query null
*)
-> Task<PutEdgeResponse<'T>>
override PutEdgeAsync :
graphName : string *
collectionName : string *
edgeKey : string *
edge : 'T *
?query : PutEdgeQuery
(* Defaults:
let _query = defaultArg query null
*)
-> Task<PutEdgeResponse<'T>>
Parameters
- graphName
- Type: SystemString
- collectionName
- Type: SystemString
- edgeKey
- Type: SystemString
- edge
- Type: T
- query (Optional)
- Type: ArangoDBNetStandard.GraphApi.ModelsPutEdgeQuery
Type Parameters
- T
- Type of the document used for the update.
Return Value
Type:
TaskPutEdgeResponseTImplements
IGraphApiClientPutEdgeAsyncT(String, String, String, T, PutEdgeQuery)See Also