13 lines
301 B
C#
13 lines
301 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace Connected
|
|
{
|
|
internal static class ParameterViewExtensions
|
|
{
|
|
public static bool Contains<T>(this ParameterView view, string parameterName)
|
|
{
|
|
return view.TryGetValue<T>(parameterName, out var _);
|
|
}
|
|
}
|
|
}
|