mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
GEEKING
This commit is contained in:
+29
@@ -0,0 +1,29 @@
|
||||
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 HelloWorldCompletedEventArgs : AsyncCompletedEventArgs
|
||||
{
|
||||
private object[] results;
|
||||
|
||||
public string Result
|
||||
{
|
||||
get
|
||||
{
|
||||
RaiseExceptionIfNecessary();
|
||||
return (string)results[0];
|
||||
}
|
||||
}
|
||||
|
||||
internal HelloWorldCompletedEventArgs(object[] results, Exception exception, bool cancelled, object userState)
|
||||
: base(exception, cancelled, userState)
|
||||
{
|
||||
this.results = results;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user