RetrieveRelativityVersionCompletedEventArgs
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
namespace Relativity.Transfer
{
[GeneratedCode("wsdl", "4.6.1055.0")]
[DebuggerStepThrough]
[DesignerCategory("code")]
public class RetrieveRelativityVersionCompletedEventArgs : AsyncCompletedEventArgs
{
private object[] results;
public string Result {
get {
RaiseExceptionIfNecessary();
return (string)results[0];
}
}
internal RetrieveRelativityVersionCompletedEventArgs(object[] results, Exception exception, bool cancelled, object userState)
: base(exception, cancelled, userState)
{
this.results = results;
}
}
}