ISearchSiteAdministrationServiceApplication.AddScope method
Adds a new Search scope to the database.
Namespace: Microsoft.Office.Server.Search.Administration
Assembly: Microsoft.Office.Server.Search (in Microsoft.Office.Server.Search.dll)
Syntax
'Declaration
<OperationContractAttribute> _
Function AddScope ( _
scopeInfo As ScopeInfo, _
<OutAttribute> ByRef statusCode As Integer _
) As Integer
'Usage
Dim instance As ISearchSiteAdministrationServiceApplication
Dim scopeInfo As ScopeInfo
Dim statusCode As Integer
Dim returnValue As Integer
returnValue = instance.AddScope(scopeInfo, _
statusCode)
[OperationContractAttribute]
int AddScope(
ScopeInfo scopeInfo,
out int statusCode
)
Parameters
scopeInfo
Type: Microsoft.Office.Server.Search.Administration.ScopeInfoThe information about the new Search scope.
statusCode
Type: System.Int32The execution status.
Return value
Type: System.Int32
The execution result.
Remarks
This method returns the ID of the Search scope if the addition is successful; otherwise, the method returns -1.
Implementing classes should set statusCode to 0 to indicate successful execution and 1 otherwise.
See also
Reference
ISearchSiteAdministrationServiceApplication interface