@zeroc/ice
    Preparing search index...

    Class ReplyStatus

    Represents the status of a reply. A reply status can have any value in the range 0..255. Do not use this enum to marshal or unmarshal a reply status unless you know its value corresponds to one of the enumerators defined below.

    Hierarchy (View Summary)

    Index

    Constructors

    • Constructs a new enumerator.

      Parameters

      • name: string

        The name of the enumerator.

      • value: number

        The numeric value of the enumerator.

      Returns ReplyStatus

    Properties

    name: string

    The name of the enumerator.

    value: number

    The value of the enumerator.

    FacetNotExist: ReplyStatus

    The dispatch found an implementation for the target object but could not find the requested facet.

    InvalidData: ReplyStatus

    The dispatch failed because the request payload could not be unmarshaled. It is typically due to a mismatch in the Slice definitions used by the client and the server.

    ObjectNotExist: ReplyStatus

    The dispatch could not find an implementation for the target object.

    The dispatch completed successfully.

    OperationNotExist: ReplyStatus

    The dispatch found an implementation for the target object but could not find the requested operation.

    Unauthorized: ReplyStatus

    The caller is not authorized to access the requested resource.

    UnknownException: ReplyStatus

    The dispatch failed with some other exception (neither an Ice local exception nor a Slice user exception).

    UnknownLocalException: ReplyStatus

    The dispatch failed with an Ice local exception.

    UnknownUserException: ReplyStatus

    The dispatch failed with a Slice user exception that does not conform to the exception specification of the operation.

    UserException: ReplyStatus

    The dispatch completed with a Slice user exception.

    Methods

    • Returns a string representation of the current enumerator.

      Returns string

      A string representation of the current enumerator.

    • Returns the enumerator for the given value.

      Parameters

      • value: number

        The enumerator value.

      Returns ReplyStatus

      The enumerator for the given value.