GetMeasureWithLabelAsync Method
Overloads
| GetMeasureWithLabelAsync(String) | 
             Returns the handle of a measure with a label. If multiple measures has the same label the first is returned.  | 
        
      
    |
| GetMeasureWithLabelAsync(AsyncHandle, String) | 
             Returns the handle of a measure with a label. If multiple measures has the same label the first is returned.  | 
        
      
    |
| GetMeasureWithLabelAsync<T>(AsyncHandle, Func<Response, T>, String) | 
             Returns the handle of a measure with a label. If multiple measures has the same label the first is returned.  | 
        
      
    
GetMeasureWithLabelAsync(String)
Returns the handle of a measure with a label.
If multiple measures has the same label the first is returned.
Declaration
      public Task<GenericMeasure> GetMeasureWithLabelAsync([QixName("qLabel")] string label)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | label | 
           is the label of the measure to be returned.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<GenericMeasure> | 
Implements
GetMeasureWithLabelAsync(AsyncHandle, String)
Returns the handle of a measure with a label.
If multiple measures has the same label the first is returned.
Declaration
      public Task<GenericMeasure> GetMeasureWithLabelAsync(AsyncHandle asyncHandle, [QixName("qLabel")] string label)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.String | label | 
           is the label of the measure to be returned.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<GenericMeasure> | 
Implements
GetMeasureWithLabelAsync<T>(AsyncHandle, Func<Response, T>, String)
Returns the handle of a measure with a label.
If multiple measures has the same label the first is returned.
Declaration
      public Task<T> GetMeasureWithLabelAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qLabel")] string label)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.Func<Response, T> | onResult | 
           Continuation function  | 
      
| System.String | label | 
           is the label of the measure to be returned.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |