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

kCura.EDDS.WebAPI.FieldQueryBase.FieldQuery

namespace kCura.EDDS.WebAPI.FieldQueryBase { public class FieldQuery { public string Url { get; set; } public bool UseDefaultCredentials { get; set; } public event RetrieveDisplayFieldNameByFieldCategoryIDCompletedEventHandler RetrieveDisplayFieldNameByFieldCategoryIDCompleted; public event RetrieveAllMappableCompletedEventHandler RetrieveAllMappableCompleted; public event RetrieveAllCompletedEventHandler RetrieveAllCompleted; public event RetrievePotentialBeginBatesFieldsCompletedEventHandler RetrievePotentialBeginBatesFieldsCompleted; public event IsFieldIndexedCompletedEventHandler IsFieldIndexedCompleted; public FieldQuery(); public string RetrieveDisplayFieldNameByFieldCategoryID(int caseContextArtifactID, int fieldCategoryID); public IAsyncResult BeginRetrieveDisplayFieldNameByFieldCategoryID(int caseContextArtifactID, int fieldCategoryID, AsyncCallback callback, object asyncState); public string EndRetrieveDisplayFieldNameByFieldCategoryID(IAsyncResult asyncResult); public void RetrieveDisplayFieldNameByFieldCategoryIDAsync(int caseContextArtifactID, int fieldCategoryID); public void RetrieveDisplayFieldNameByFieldCategoryIDAsync(int caseContextArtifactID, int fieldCategoryID, object userState); public DataSet RetrieveAllMappable(int caseContextArtifactID, int artifactTypeID); public IAsyncResult BeginRetrieveAllMappable(int caseContextArtifactID, int artifactTypeID, AsyncCallback callback, object asyncState); public DataSet EndRetrieveAllMappable(IAsyncResult asyncResult); public void RetrieveAllMappableAsync(int caseContextArtifactID, int artifactTypeID); public void RetrieveAllMappableAsync(int caseContextArtifactID, int artifactTypeID, object userState); public DataSet RetrieveAll(int caseContextArtifactID); public IAsyncResult BeginRetrieveAll(int caseContextArtifactID, AsyncCallback callback, object asyncState); public DataSet EndRetrieveAll(IAsyncResult asyncResult); public void RetrieveAllAsync(int caseContextArtifactID); public void RetrieveAllAsync(int caseContextArtifactID, object userState); public DataSet RetrievePotentialBeginBatesFields(int caseContextArtifactID); public IAsyncResult BeginRetrievePotentialBeginBatesFields(int caseContextArtifactID, AsyncCallback callback, object asyncState); public DataSet EndRetrievePotentialBeginBatesFields(IAsyncResult asyncResult); public void RetrievePotentialBeginBatesFieldsAsync(int caseContextArtifactID); public void RetrievePotentialBeginBatesFieldsAsync(int caseContextArtifactID, object userState); public bool IsFieldIndexed(int caseContextArtifactID, int fieldArtifactID); public IAsyncResult BeginIsFieldIndexed(int caseContextArtifactID, int fieldArtifactID, AsyncCallback callback, object asyncState); public bool EndIsFieldIndexed(IAsyncResult asyncResult); public void IsFieldIndexedAsync(int caseContextArtifactID, int fieldArtifactID); public void IsFieldIndexedAsync(int caseContextArtifactID, int fieldArtifactID, object userState); public void CancelAsync(object userState); } }