RetrieveDocumentLimitCompletedEventArgs
using Microsoft.VisualBasic.CompilerServices;
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.Runtime.CompilerServices;
namespace kCura.EDDS.WebAPI.DocumentManagerBase
{
[GeneratedCode("System.Web.Services", "4.7.2556.0")]
[DebuggerStepThrough]
[DesignerCategory("code")]
public class RetrieveDocumentLimitCompletedEventArgs : AsyncCompletedEventArgs
{
private object[] results;
public int Result {
get {
RaiseExceptionIfNecessary();
return Conversions.ToInteger(results[0]);
}
}
internal RetrieveDocumentLimitCompletedEventArgs(object[] results, Exception exception, bool cancelled, object userState)
: base(exception, cancelled, RuntimeHelpers.GetObjectValue(userState))
{
this.results = results;
}
}
}