TestimoX

API Reference

Class

RemoteAccess

Namespace ComputerX.RemoteAccess
Assembly ComputerX
Modifiers static

Queries remote access posture (OpenSSH and Remote Assistance).

Inheritance

  • Object
  • RemoteAccess

Methods

public static RemoteAccessPostureInfo Get(String computerName = null) #
Returns: RemoteAccessPostureInfo

Gets remote access posture for a local or remote computer.

Parameters

computerName System.String = null optionalposition: 0
Target computer; null/empty uses local machine.

Returns

Remote access posture snapshot.

public static Task<RemoteAccessPostureInfo> GetAsync(String computerName = null, CancellationToken cancellationToken = null) #
Returns: Task<RemoteAccessPostureInfo>

Asynchronously gets remote access posture for a local or remote computer.

Parameters

computerName System.String = null optionalposition: 0
Target computer; null/empty uses local machine.
cancellationToken System.Threading.CancellationToken = null optionalposition: 1
Cancellation token.

Returns

Remote access posture snapshot.

public static IAsyncEnumerable<RemoteAccessPostureInfo> GetManyAsync(IEnumerable<String> computerNames, Int32 degreeOfParallelism = 4, CancellationToken cancellationToken = null) #
Returns: IAsyncEnumerable<RemoteAccessPostureInfo>

Gets remote access posture for multiple computers with bounded concurrency.

Parameters

computerNames System.Collections.Generic.IEnumerable{System.String} requiredposition: 0
Target computers.
degreeOfParallelism System.Int32 = 4 optionalposition: 1
Maximum concurrency.
cancellationToken System.Threading.CancellationToken = null optionalposition: 2
Cancellation token.