Search Results for

    Show / Hide Table of Contents

    Class MessageReceivedEventArgs

    Represents the arguments of the message received event.

    Inheritance
    object
    EventArgs
    MessageReceivedEventArgs
    Inherited Members
    EventArgs.Empty
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Evergine.Networking.Connection
    Assembly: Evergine.Networking.dll
    Syntax
    public class MessageReceivedEventArgs : EventArgs

    Constructors

    MessageReceivedEventArgs(NetworkEndpoint, IncomingMessage)

    Initializes a new instance of the MessageReceivedEventArgs class.

    Declaration
    public MessageReceivedEventArgs(NetworkEndpoint fromEndpoint, IncomingMessage receivedMessage)
    Parameters
    Type Name Description
    NetworkEndpoint fromEndpoint

    The endpoint of the sender.

    IncomingMessage receivedMessage

    The received message.

    Properties

    FromEndpoint

    Gets the endpoint of the sender.

    Declaration
    public NetworkEndpoint FromEndpoint { get; }
    Property Value
    Type Description
    NetworkEndpoint

    ReceivedMessage

    Gets the received message.

    Declaration
    public IncomingMessage ReceivedMessage { get; }
    Property Value
    Type Description
    IncomingMessage

    Extension Methods

    ReflectionHelper.GetMemberAssembly(object)
    ReflectionHelper.GetTypeName(object)
    In This Article
    Back to top
    Generated by DocFX