/// <summary> /// Browse next set of unique target nodes /// </summary> /// <remarks> /// Browse the next set of unique hierarchically referenced target nodes on the /// endpoint. The endpoint must be activated and connected and the module /// client and server must trust each other. Note that this is the same as the /// POST method with the model containing the continuation token and the /// targetNodesOnly flag set to true. /// </remarks> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='endpointId'> /// The identifier of the activated endpoint. /// </param> /// <param name='continuationToken'> /// Continuation token from GetSetOfUniqueNodes operation /// </param> public static BrowseNextResponseApiModel GetNextSetOfUniqueNodes(this IAzureOpcTwinClient operations, string endpointId, string continuationToken) { return(operations.GetNextSetOfUniqueNodesAsync(endpointId, continuationToken).GetAwaiter().GetResult()); }