Share via


SocialDataService.GetAllTagTerms method

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

Namespace:  WebSvcSocialDataService
Assembly:  UserProfileServices (in UserProfileServices.dll)

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

WebSvcSocialDataService namespace