Files
watrbx-game-engine/Client.LegacyAssemblies/Grid/Roblox.Grid.Common/Roblox.Grid.Rcc/GetAllJobsExCompletedEventArgs.cs
T
2025-09-18 17:55:52 -04:00

30 lines
609 B
C#

using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
namespace Roblox.Grid.Rcc;
[GeneratedCode("wsdl", "4.8.3928.0")]
[DebuggerStepThrough]
[DesignerCategory("code")]
public class GetAllJobsExCompletedEventArgs : AsyncCompletedEventArgs
{
private object[] results;
public Job[] Result
{
get
{
RaiseExceptionIfNecessary();
return (Job[])results[0];
}
}
internal GetAllJobsExCompletedEventArgs(object[] results, Exception exception, bool cancelled, object userState)
: base(exception, cancelled, userState)
{
this.results = results;
}
}