Show / Hide Table of Contents

Interface IGrainCallContext

Represents a method invocation as well as the result of invocation.

Namespace: Orleans
Assembly: Orleans.Core.Abstractions.dll
Syntax
public interface IGrainCallContext

Properties

| Improve this Doc View Source

Arguments

Gets the arguments for this method invocation.

Declaration
object[] Arguments { get; }
Property Value
Type Description
System.Object[]
| Improve this Doc View Source

Grain

Gets the grain being invoked.

Declaration
IAddressable Grain { get; }
Property Value
Type Description
IAddressable
| Improve this Doc View Source

Method

Gets the of the method being invoked.

Declaration
MethodInfo Method { get; }
Property Value
Type Description
MethodInfo
| Improve this Doc View Source

Result

Gets or sets the result.

Declaration
object Result { get; set; }
Property Value
Type Description
System.Object

Methods

| Improve this Doc View Source

Invoke()

Invokes the request.

Declaration
Task Invoke()
Returns
Type Description
Task

Extension Methods

ImmutableExt.AsImmutable<T>(T)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX