Class DirectTCPSocketOpenedEventArgs
Fired when direct_socket.TCPSocket connection is opened.
public sealed class DirectTCPSocketOpenedEventArgs : EventArgs
- Inheritance
-
DirectTCPSocketOpenedEventArgs
- Inherited Members
Properties
Identifier
Gets or sets the identifier
[JsonPropertyName("identifier")]
public string Identifier { get; set; }
Property Value
LocalAddr
Gets or sets the localAddr
[JsonPropertyName("localAddr")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? LocalAddr { get; set; }
Property Value
LocalPort
Expected to be unsigned integer.
[JsonPropertyName("localPort")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? LocalPort { get; set; }
Property Value
- long?
RemoteAddr
Gets or sets the remoteAddr
[JsonPropertyName("remoteAddr")]
public string RemoteAddr { get; set; }
Property Value
RemotePort
Expected to be unsigned integer.
[JsonPropertyName("remotePort")]
public long RemotePort { get; set; }
Property Value
Timestamp
Gets or sets the timestamp
[JsonPropertyName("timestamp")]
public double Timestamp { get; set; }