mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 17:16:22 +02:00
Add XML docs
This commit is contained in:
@@ -1,10 +1,32 @@
|
||||
namespace RemoteExec.Shared;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a request to execute a static method on a remote server.
|
||||
/// </summary>
|
||||
public sealed class RemoteExecutionRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the full name of the assembly containing the method.
|
||||
/// </summary>
|
||||
public required string AssemblyName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the full name of the type containing the method.
|
||||
/// </summary>
|
||||
public required string TypeName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the name of the method to execute.
|
||||
/// </summary>
|
||||
public required string MethodName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the assembly-qualified names of the method's parameter types.
|
||||
/// </summary>
|
||||
public required string[] ArgumentTypes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the arguments to pass to the method.
|
||||
/// </summary>
|
||||
public required object[] Arguments { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user