kCura.EDDS.WebAPI.ObjectManagerBase.ObjectManager
namespace kCura.EDDS.WebAPI.ObjectManagerBase
{
public class ObjectManager
{
public string Url { get; set; }
public bool UseDefaultCredentials { get; set; }
public event RetrieveArtifactIdOfMappedObjectCompletedEventHandler RetrieveArtifactIdOfMappedObjectCompleted;
public event RetrieveTextIdentifierOfMappedObjectCompletedEventHandler RetrieveTextIdentifierOfMappedObjectCompleted;
public event RetrieveArtifactIdOfMappedParentObjectCompletedEventHandler RetrieveArtifactIdOfMappedParentObjectCompleted;
public event UpdateCompletedEventHandler UpdateCompleted;
public ObjectManager();
public DataSet RetrieveArtifactIdOfMappedObject(int caseContextArtifactID, string textIdentifier, int artifactTypeID);
public IAsyncResult BeginRetrieveArtifactIdOfMappedObject(int caseContextArtifactID, string textIdentifier, int artifactTypeID, AsyncCallback callback, object asyncState);
public DataSet EndRetrieveArtifactIdOfMappedObject(IAsyncResult asyncResult);
public void RetrieveArtifactIdOfMappedObjectAsync(int caseContextArtifactID, string textIdentifier, int artifactTypeID);
public void RetrieveArtifactIdOfMappedObjectAsync(int caseContextArtifactID, string textIdentifier, int artifactTypeID, object userState);
public DataSet RetrieveTextIdentifierOfMappedObject(int caseContextArtifactID, int artifactId, int artifactTypeID);
public IAsyncResult BeginRetrieveTextIdentifierOfMappedObject(int caseContextArtifactID, int artifactId, int artifactTypeID, AsyncCallback callback, object asyncState);
public DataSet EndRetrieveTextIdentifierOfMappedObject(IAsyncResult asyncResult);
public void RetrieveTextIdentifierOfMappedObjectAsync(int caseContextArtifactID, int artifactId, int artifactTypeID);
public void RetrieveTextIdentifierOfMappedObjectAsync(int caseContextArtifactID, int artifactId, int artifactTypeID, object userState);
public DataSet RetrieveArtifactIdOfMappedParentObject(int caseContextArtifactID, string textIdentifier, int artifactTypeID);
public IAsyncResult BeginRetrieveArtifactIdOfMappedParentObject(int caseContextArtifactID, string textIdentifier, int artifactTypeID, AsyncCallback callback, object asyncState);
public DataSet EndRetrieveArtifactIdOfMappedParentObject(IAsyncResult asyncResult);
public void RetrieveArtifactIdOfMappedParentObjectAsync(int caseContextArtifactID, string textIdentifier, int artifactTypeID);
public void RetrieveArtifactIdOfMappedParentObjectAsync(int caseContextArtifactID, string textIdentifier, int artifactTypeID, object userState);
public void Update(int appArtifactId, SimplifiedMaskDto artifact);
public IAsyncResult BeginUpdate(int appArtifactId, SimplifiedMaskDto artifact, AsyncCallback callback, object asyncState);
public void EndUpdate(IAsyncResult asyncResult);
public void UpdateAsync(int appArtifactId, SimplifiedMaskDto artifact);
public void UpdateAsync(int appArtifactId, SimplifiedMaskDto artifact, object userState);
public void CancelAsync(object userState);
}
}