mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 09:06:20 +02:00
Add XML docs
This commit is contained in:
@@ -1,7 +1,17 @@
|
||||
namespace RemoteExec.Shared;
|
||||
|
||||
/// <summary>
|
||||
/// Represents the result of a remote method execution.
|
||||
/// </summary>
|
||||
public sealed class RemoteExecutionResult
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the return value of the executed method, or null if the method returns void.
|
||||
/// </summary>
|
||||
public object? Result { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the exception message if the execution failed, or null if successful.
|
||||
/// </summary>
|
||||
public string? Exception { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user