CloseMessage Class

Definition

The message sent when closing a connection.

public ref class CloseMessage : Microsoft::AspNetCore::SignalR::Protocol::HubMessage
public class CloseMessage : Microsoft.AspNetCore.SignalR.Protocol.HubMessage
type CloseMessage = class
    inherit HubMessage
Public Class CloseMessage
Inherits HubMessage
Inheritance
CloseMessage

Constructors

CloseMessage(String)

Initializes a new instance of the CloseMessage class with an optional error message and AllowReconnect set to false.

CloseMessage(String, Boolean)

Initializes a new instance of the CloseMessage class with an optional error message and a Boolean indicating whether or not a client with automatic reconnects enabled should attempt to reconnect upon receiving the message.

Fields

Empty

An empty close message with no error and AllowReconnect set to false.

Properties

AllowReconnect

If false, clients with automatic reconnects enabled should not attempt to automatically reconnect after receiving the CloseMessage.

Error

Gets the optional error message.

Applies to