Skip to main content

Definition

Assembly: Microsoft.Restier.Core.dll Namespace: Microsoft.Restier.Core Inheritance: System.Object

Syntax

Microsoft.Restier.Core.InvocationContext

Summary

Represents context under which an request is processed. The request could be a query, a submit, an operation execution or a model retrieve. It has subclass for each kinds of request.

Remarks

An invocation context is created each time an request is parsed to a specified request.

Constructors

.ctor

Initializes a new instance of the InvocationContext class.

Syntax

public InvocationContext(Microsoft.Restier.Core.ApiBase api)

Parameters

NameTypeDescription
apiMicrosoft.Restier.Core.ApiBaseAn Api.

.ctor Inherited

Inherited from object

Syntax

public Object()

Properties

Api

Gets the ApiBase descendant for this invocation.

Syntax

public Microsoft.Restier.Core.ApiBase Api { get; }

Property Value

Type: Microsoft.Restier.Core.ApiBase

Methods

Equals Inherited Virtual

Inherited from object

Syntax

public virtual bool Equals(object obj)

Parameters

NameTypeDescription
objobject?-

Returns

Type: bool

Equals Inherited

Inherited from object

Syntax

public static bool Equals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

GetApiService

Gets an API service.

Syntax

public T GetApiService<T>() where T : class

Returns

Type: T The API service instance.

Type Parameters

  • T - The API service type.

GetApiService

Gets an API service.

Syntax

public object GetApiService(System.Type type)

Parameters

NameTypeDescription
typeSystem.TypeThe API service type.

Returns

Type: object The API service instance.

GetHashCode Inherited Virtual

Inherited from object

Syntax

public virtual int GetHashCode()

Returns

Type: int

GetType Inherited

Inherited from object

Syntax

public System.Type GetType()

Returns

Type: System.Type

MemberwiseClone Inherited

Inherited from object

Syntax

protected internal object MemberwiseClone()

Returns

Type: object

ReferenceEquals Inherited

Inherited from object

Syntax

public static bool ReferenceEquals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

ToString Inherited Virtual

Inherited from object

Syntax

public virtual string ToString()

Returns

Type: string?