Files
2025-09-18 17:55:52 -04:00

29 lines
605 B
C#

using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
namespace Roblox.Grid.Arbiter.Common.Arbiter;
[DebuggerStepThrough]
[GeneratedCode("System.ServiceModel", "4.0.0.0")]
public class GetStatsCompletedEventArgs : AsyncCompletedEventArgs
{
private object[] results;
public string Result
{
get
{
RaiseExceptionIfNecessary();
return (string)results[0];
}
}
public GetStatsCompletedEventArgs(object[] results, Exception exception, bool cancelled, object userState)
: base(exception, cancelled, userState)
{
this.results = results;
}
}