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