| GraphApiClientGetEdgeAsyncT Method (String, String, String, GetEdgeQuery) | 
 
            Gets an edge from the given graph using the edge collection and _key attribute.
            
 
    Namespace: 
   ArangoDBNetStandard.GraphApi
    Assembly:
   ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
 Syntax
Syntaxpublic virtual Task<GetEdgeResponse<T>> GetEdgeAsync<T>(
	string graphName,
	string collectionName,
	string edgeKey,
	GetEdgeQuery query = null
)
Public Overridable Function GetEdgeAsync(Of T) ( 
	graphName As String,
	collectionName As String,
	edgeKey As String,
	Optional query As GetEdgeQuery = Nothing
) As Task(Of GetEdgeResponse(Of T))
public:
generic<typename T>
virtual Task<GetEdgeResponse<T>^>^ GetEdgeAsync(
	String^ graphName, 
	String^ collectionName, 
	String^ edgeKey, 
	GetEdgeQuery^ query = nullptr
)
abstract GetEdgeAsync : 
        graphName : string * 
        collectionName : string * 
        edgeKey : string * 
        ?query : GetEdgeQuery 
(* Defaults:
        let _query = defaultArg query null
*)
-> Task<GetEdgeResponse<'T>> 
override GetEdgeAsync : 
        graphName : string * 
        collectionName : string * 
        edgeKey : string * 
        ?query : GetEdgeQuery 
(* Defaults:
        let _query = defaultArg query null
*)
-> Task<GetEdgeResponse<'T>> Parameters
- graphName
- Type: SystemString
 The name of the graph.
- collectionName
- Type: SystemString
 The name of the edge collection the edge belongs to.
- edgeKey
- Type: SystemString
 The _key attribute of the edge.
- query (Optional)
- Type: ArangoDBNetStandard.GraphApi.ModelsGetEdgeQuery
 
Type Parameters
- T
- The type of the edge document to deserialize to.
Return Value
Type: 
TaskGetEdgeResponseTImplements
IGraphApiClientGetEdgeAsyncT(String, String, String, GetEdgeQuery) See Also
See Also