Get IRC rule books used during analysis
Returns the list of rule books used to scope a given analysis.
Syntax:
Public IBizObjectCollection GetRuleBooksForAnalysis(AuthInfo objAuthInfo, int AnalysisID);
Parameters:
Parameter | Description |
---|---|
Auth Object | Authentication object with IRC user name and password provided to the application consuming the web service. |
AnalysisID | The unique ID of the IRC analysis, which will provide the list of rule books used during analysis. |
Example
BizRightsPublishingFramework.PublishingWebServices objMyImplementation = new
BizRightsPublishingFramework.PublishingWebServices();
BizRightsPublishingFramework.IBizObjectCollection objBizObjectDataCol = new
BizRightsPublishingFramework.IBizObjectCollection();
BizRightsPublishingFramework.SearchCriteria objSearchData = new
BizRightsPublishingFramework.SearchCriteria();
BizRightsPublishingFramework.IBizObjectCollection objBizRuleBookDataCol = new
BizRightsPublishingFramework.IBizObjectCollection();
//Find the analysis ID
objBizObjectsDataCol = objMyImplementation.GetObjectData(objAuthInfo,
BizRightsPublishingFramework.ObjectType.Analysis, null,
BizRightsPublishingFramework.SearchType.Containing, objSearchData);
//Get Rule Books
objBizRuleBookDataCol = objMyImplementation.GetRuleBooksForAnalysis(objAuthInfo, intAnalysisID);