Search Results for

    Show / Hide Table of Contents

    Class Right<T>

    Represents a standalone right value that can be implicitly converted to an Either.

    Inheritance
    object
    Right<T>
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Akka.Util
    Assembly: Akka.dll
    Syntax
    public class Right<T>
    Type Parameters
    Name Description
    T

    The type of the right value.

    Constructors

    | Edit this page View Source

    Right(T)

    Initializes a new instance of the Right<T> class.

    Declaration
    public Right(T value)
    Parameters
    Type Name Description
    T value

    The right value to contain.

    Properties

    | Edit this page View Source

    IsLeft

    Gets a value indicating whether this instance represents a Left. Always returns false for Right instances.

    Declaration
    public bool IsLeft { get; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    IsRight

    Gets a value indicating whether this instance represents a Right. Always returns true for Right instances.

    Declaration
    public bool IsRight { get; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    Value

    Gets the right value contained in this instance.

    Declaration
    public T Value { get; }
    Property Value
    Type Description
    T

    Extension Methods

    ObjectExtensions.IsDefaultForType<T>(T)
    ObjectExtensions.AsOption<T>(T)
    Extensions.AsInstanceOf<T>(object)
    In this article
    • githubEdit this page
    • View Source
    Back to top
    Contribute
    • Project Chat
    • Discussion Forum
    • Source Code
    Support
    • Akka.NET Support Plans
    • Akka.NET Observability Tools
    • Akka.NET Training & Consulting
    Maintained By
    • Petabridge - The Akka.NET Company
    • Learn Akka.NET