mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
30 lines
607 B
C#
30 lines
607 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 DiagExCompletedEventArgs : AsyncCompletedEventArgs
|
|
{
|
|
private object[] results;
|
|
|
|
public LuaValue[] Result
|
|
{
|
|
get
|
|
{
|
|
RaiseExceptionIfNecessary();
|
|
return (LuaValue[])results[0];
|
|
}
|
|
}
|
|
|
|
internal DiagExCompletedEventArgs(object[] results, Exception exception, bool cancelled, object userState)
|
|
: base(exception, cancelled, userState)
|
|
{
|
|
this.results = results;
|
|
}
|
|
}
|