<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

GetAllDocumentFolderPathsCompletedEventArgs

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