다음을 통해 공유


SocialDataService.GetAllTagTerms Method

Retrieves all social tag terms, up to the specified maximum number.

Namespace:  [SocialDataService Web service]
Web service reference: http://Site/_vti_bin/SocialDataService.asmx

Syntax

'Declaration
<SoapDocumentMethodAttribute("https://microsoft.com/webservices/SharePointPortalServer/SocialDataService/GetAllTagTerms", RequestNamespace := "https://microsoft.com/webservices/SharePointPortalServer/SocialDataService",  _
    ResponseNamespace := "https://microsoft.com/webservices/SharePointPortalServer/SocialDataService",  _
    Use := SoapBindingUse.Literal, ParameterStyle := SoapParameterStyle.Wrapped)> _
Public Function GetAllTagTerms ( _
    maximumItemsToReturn As Nullable(Of Integer) _
) As SocialTermDetail()
'Usage
Dim instance As SocialDataService
Dim maximumItemsToReturn As Nullable(Of Integer)
Dim returnValue As SocialTermDetail()

returnValue = instance.GetAllTagTerms(maximumItemsToReturn)
[SoapDocumentMethodAttribute("https://microsoft.com/webservices/SharePointPortalServer/SocialDataService/GetAllTagTerms", RequestNamespace = "https://microsoft.com/webservices/SharePointPortalServer/SocialDataService", 
    ResponseNamespace = "https://microsoft.com/webservices/SharePointPortalServer/SocialDataService", 
    Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)]
public SocialTermDetail[] GetAllTagTerms(
    Nullable<int> maximumItemsToReturn
)

Parameters

  • maximumItemsToReturn
    Type: System.Nullable<Int32>

    The maximum number of terms to return. If this value is not specified or is 0, this method returns up to 1000 social tag terms.

Return Value

Type: []
An array that contains all social tag terms, up to the specified maximum number.

Exceptions

Exception Condition
ArgumentOutOfRangeException

maximumItemsToReturn is negative.

Remarks

If maximumItemsToReturn is null , this method does not return any social tag terms.

See Also

Reference

SocialDataService Class

SocialDataService Members

SocialDataService Web Service