/// <summary>
 /// Browse node references
 /// </summary>
 /// <remarks>
 /// Browse a node on the specified endpoint. The endpoint must be activated and
 /// connected and the module client and server must trust each other.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='endpointId'>
 /// The identifier of the activated endpoint.
 /// </param>
 /// <param name='body'>
 /// The browse request
 /// </param>
 public static BrowseResponseApiModel Browse(this IAzureOpcTwinClient operations, string endpointId, BrowseRequestApiModel body)
 {
     return(operations.BrowseAsync(endpointId, body).GetAwaiter().GetResult());
 }