PurviewGlossaries.GetRelatedTermsAsync(String, Nullable<Int32>, Nullable<Int32>, String, RequestOptions) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Get all related terms for a specific term by its GUID. Limit, offset, and sort parameters are currently not being enabled and won't work even they are passed.
public virtual System.Threading.Tasks.Task<Azure.Response> GetRelatedTermsAsync (string termGuid, int? limit = default, int? offset = default, string sort = default, Azure.RequestOptions requestOptions = default);
abstract member GetRelatedTermsAsync : string * Nullable<int> * Nullable<int> * string * Azure.RequestOptions -> System.Threading.Tasks.Task<Azure.Response>
override this.GetRelatedTermsAsync : string * Nullable<int> * Nullable<int> * string * Azure.RequestOptions -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function GetRelatedTermsAsync (termGuid As String, Optional limit As Nullable(Of Integer) = Nothing, Optional offset As Nullable(Of Integer) = Nothing, Optional sort As String = Nothing, Optional requestOptions As RequestOptions = Nothing) As Task(Of Response)
Parameters
- termGuid
- System.String
The globally unique identifier for glossary term.
- limit
- System.Nullable<System.Int32>
The page size - by default there is no paging.
- offset
- System.Nullable<System.Int32>
The offset for pagination purpose.
- sort
- System.String
The sort order, ASC (default) or DESC.
- requestOptions
- RequestOptions
The request options.
Returns
- System.Threading.Tasks.Task<Response>