public abstract Result GetPerformanceParameter([Count(Count = 0)] Device device, [Count(Count = 0)] PerformanceParameterTypeINTEL parameter, [Count(Count = 0), Flow(FlowDirection.Out)] out PerformanceValueINTEL pValue);
 /// <summary>To be documented.</summary>
 public static unsafe Result GetPerformanceParameter(this IntelPerformanceQuery thisApi, [Count(Count = 0)] Device device, [Count(Count = 0)] PerformanceParameterTypeINTEL parameter, [Count(Count = 0), Flow(FlowDirection.Out)] Span <PerformanceValueINTEL> pValue)
 {
     // SpanOverloader
     return(thisApi.GetPerformanceParameter(device, parameter, out pValue.GetPinnableReference()));
 }