Click or drag to resize
WebSocket Class
The WebSocket class represents a "tunnel" through which WebSocket messages flow. The class' messages may be deserialized from a SAZ file.
Inheritance Hierarchy
SystemObject
  FiddlerWebSocket

Namespace: Fiddler
Assembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax
public class WebSocket : ITunnel

The WebSocket type exposes the following members.

Methods
  NameDescription
Public methodCloseTunnel
Interface Method Close the WebSocket and signal the event to let its service thread die. Also called by oSession.Abort() WARNING: This should not be allowed to throw any exceptions, because it will do so on threads that don't catch them, and this will kill the application.
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnReceiveFromClient
Called when we have received data from the local client.
Protected methodOnReceiveFromServer
Called when we have received data from the remote host. Incoming data will immediately be forwarded to the local client.
Public methodToString (Overrides ObjectToString.)
Top
Fields
  NameDescription
Public fieldlistMessages
Top
Properties
  NameDescription
Public propertyEgressByteCount
Returns number of bytes sent from the Client to the Server on this WebSocket
Public propertyIngressByteCount
Returns number of bytes sent from the Server to the Client on this WebSocket
Public propertyIsOpen
Is this WebSocket open/connected?
Public propertyMessageCount
Top
See Also