Skip to content

Class SearchServerPrivateKeyEvent

Namespace: Void.Proxy.Api.Events.Encryption
Assembly: Void.Proxy.Api.dll

Requests the private key used to decrypt an encrypted connection to a destination server.

public record SearchServerPrivateKeyEvent : IEventWithResult<byte[]>, IEvent, IEquatable<SearchServerPrivateKeyEvent>

Inheritance

objectSearchServerPrivateKeyEvent

Implements

IEventWithResult<byte[]>, IEvent, IEquatable<SearchServerPrivateKeyEvent>

Inherited Members

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()

Constructors

SearchServerPrivateKeyEvent(IServer)

Requests the private key used to decrypt an encrypted connection to a destination server.

public SearchServerPrivateKeyEvent(IServer Server)

Parameters

Server IServer

The destination server whose private key is requested.

Properties

Result

Gets or sets the encoded private key supplied by a listener.

public byte[]? Result { get; set; }

Property Value

byte[]?

Server

The destination server whose private key is requested.

public IServer Server { get; init; }

Property Value

IServer