本文整理汇总了C#中PrivateType.Any方法的典型用法代码示例。如果您正苦于以下问题:C# PrivateType.Any方法的具体用法?C# PrivateType.Any怎么用?C# PrivateType.Any使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PrivateType
的用法示例。
在下文中一共展示了PrivateType.Any方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PerformanceCounterUtilityPlaceholderExpansionTest
public void PerformanceCounterUtilityPlaceholderExpansionTest()
{
PerformanceCounterUtility.InvalidatePlaceholderCache();
var win32Instances = PerformanceCounterUtility.GetWin32ProcessInstances();
var clrInstances = PerformanceCounterUtility.GetClrProcessInstances();
var pc = PerformanceCounterUtility.ParsePerformanceCounter(@"\Processor(??APP_WIN32_PROC??)\% Processor Time", win32Instances, clrInstances);
Assert.IsFalse(pc.InstanceName.Contains("?"));
pc = PerformanceCounterUtility.ParsePerformanceCounter(@"\Processor(??APP_CLR_PROC??)\% Processor Time", win32Instances, clrInstances);
Assert.IsFalse(pc.InstanceName.Contains("?"));
pc = PerformanceCounterUtility.ParsePerformanceCounter(@"\Processor(??APP_W3SVC_PROC??)\% Processor Time", win32Instances, clrInstances);
Assert.IsFalse(pc.InstanceName.Contains("?"));
pc = PerformanceCounterUtility.ParsePerformanceCounter(@"\ASP.NET Applications(??APP_W3SVC_PROC??)\Request Execution Time", win32Instances, clrInstances);
Assert.IsFalse(pc.InstanceName.Contains("?"));
pc = PerformanceCounterUtility.ParsePerformanceCounter(@"\Processor(??NON_EXISTENT??)\% Processor Time", win32Instances, clrInstances);
Assert.AreEqual("??NON_EXISTENT??", pc.InstanceName);
// validate placeholder cache state
var cache =
new PrivateType(typeof(PerformanceCounterUtility)).GetStaticField(
"PlaceholderCache",
BindingFlags.NonPublic) as Dictionary<string, string>;
Assert.AreEqual(3, cache.Count);
Assert.IsTrue(cache.ContainsKey("APP_WIN32_PROC"));
Assert.IsTrue(cache.ContainsKey("APP_CLR_PROC"));
Assert.IsTrue(cache.ContainsKey("APP_W3SVC_PROC"));
PerformanceCounterUtility.InvalidatePlaceholderCache();
Assert.IsFalse(cache.Any());
}
开发者ID:gregjhogan,项目名称:ApplicationInsights-server-dotnet,代码行数:37,代码来源:PerformanceCounterUtilityTests.cs