Class GraphClientWrapper
The graph client wrapper.
Inheritance
GraphClientWrapper
Assembly: Microsoft.Graph.Communications.Client.dll
Syntax
public class GraphClientWrapper : ObjectRoot, IGraphClient
Constructors
GraphClientWrapper(IGraphClient, GraphClientContext)
Declaration
public GraphClientWrapper(IGraphClient client, GraphClientContext context)
Parameters
Properties
Context
Declaration
public GraphClientContext Context { get; }
Property Value
DefaultProperties
Gets the default properties.
Declaration
public IEnumerable<IGraphProperty> DefaultProperties { get; }
Property Value
GraphLogger
Declaration
public IGraphLogger GraphLogger { get; }
Property Value
Methods
SendAsync<T>(IGraphRequest<T>, CancellationToken)
Declaration
public Task<IGraphResponse> SendAsync<T>(IGraphRequest<T> request, CancellationToken cancellationToken = default(CancellationToken))
where T : class
Parameters
Returns
Type Parameters
SendAsync<T1, T2>(IGraphRequest<T1>, CancellationToken)
Declaration
public Task<IGraphResponse<T2>> SendAsync<T1, T2>(IGraphRequest<T1> request, CancellationToken cancellationToken = default(CancellationToken))
where T1 : class where T2 : class
Parameters
Returns
Type Parameters
Implements