Class OptionalExternalInstall
Signals an external service if available, falling back to SelfInstall otherwise.
public sealed record OptionalExternalInstall : InstallMethod, IEquatable<InstallMethod>, IEquatable<OptionalExternalInstall>
- Inheritance
-
OptionalExternalInstall
- Implements
- Inherited Members
Constructors
OptionalExternalInstall(string, TimeSpan)
Signals an external service if available, falling back to SelfInstall otherwise.
public OptionalExternalInstall(string PipeName, TimeSpan Timeout)
Parameters
PipeNamestringName of the pipe that should be notified to trigger an external update service.
TimeoutTimeSpanHow long to wait for a connection to the named pipe.
Properties
PipeName
Name of the pipe that should be notified to trigger an external update service.
public string PipeName { get; init; }
Property Value
Timeout
How long to wait for a connection to the named pipe.
public TimeSpan Timeout { get; init; }