IRingRange.InRange Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| InRange(GrainId) |
Returns a value indicating whether |
| InRange(GrainReference) | |
| InRange(UInt32) |
Returns a value indicating whether |
InRange(GrainId)
Returns a value indicating whether grainId is within this ring range.
public bool InRange(Orleans.Runtime.GrainId grainId);
member this.InRange : Orleans.Runtime.GrainId -> bool
Public Function InRange (grainId As GrainId) As Boolean
Parameters
- grainId
- GrainId
The value to check.
Returns
true if the reminder is in our responsibility range, false otherwise.
Applies to
InRange(GrainReference)
- Source:
- RingRange.cs
public bool InRange(Orleans.Runtime.GrainReference grainReference);
abstract member InRange : Orleans.Runtime.GrainReference -> bool
Public Function InRange (grainReference As GrainReference) As Boolean
Parameters
- grainReference
- GrainReference
Returns
Applies to
InRange(UInt32)
- Source:
- RingRange.cs
Returns a value indicating whether value is within this ring range.
public bool InRange(uint n);
public bool InRange(uint value);
abstract member InRange : uint32 -> bool
abstract member InRange : uint32 -> bool
Public Function InRange (n As UInteger) As Boolean
Public Function InRange (value As UInteger) As Boolean
Parameters
- nvalue
- UInt32
Returns
true if the reminder is in our responsibility range, false otherwise.