Deconstructs the result into success flag and value/error.
public void Deconstruct(out bool isSuccess, out object? valueOrError);isSuccess System.Boolean
Whether the operation was successful.
valueOrError System.Object
The value if successful, or the error message if failed.