Class PlatformInitializeParams
Request: the caller tells the child what it expects; sent by ChildConnection after LSP init.
[Method("rdcore/platform/initialize", Direction.ClientToServer)]
public record PlatformInitializeParams : IRequest, IRequest<Unit>, IRequest<PlatformInitializeResult>, IBaseRequest, IEquatable<PlatformInitializeParams>
- Inheritance
-
PlatformInitializeParams
- Implements
-
IRequestIRequest<Unit>IRequest<PlatformInitializeResult>IBaseRequest
- Inherited Members
Properties
Expected
The platform capabilities the caller expects the child to provide.
public CorePlatformClientCapabilities Expected { get; init; }
Property Value
ExpectedComponent
The component the caller believes it is talking to.
public CoreServerComponent ExpectedComponent { get; init; }