CounterCreationDataCollection.AddRange 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에 여러 CounterCreationData 인스턴스를 추가합니다.
오버로드
| Name | Description |
|---|---|
| AddRange(CounterCreationData[]) |
컬렉션에 지정된 인스턴스 배열 CounterCreationData 을 추가합니다. |
| AddRange(CounterCreationDataCollection) |
지정된 인스턴스 컬렉션을 컬렉션 CounterCreationData 에 추가합니다. |
AddRange(CounterCreationData[])
컬렉션에 지정된 인스턴스 배열 CounterCreationData 을 추가합니다.
public:
void AddRange(cli::array <System::Diagnostics::CounterCreationData ^> ^ value);
public void AddRange(System.Diagnostics.CounterCreationData[] value);
member this.AddRange : System.Diagnostics.CounterCreationData[] -> unit
Public Sub AddRange (value As CounterCreationData())
매개 변수
- value
- CounterCreationData[]
기존 컬렉션에 추가할 인스턴스의 배열 CounterCreationData 입니다.
예외
value은 null입니다.
적용 대상
AddRange(CounterCreationDataCollection)
지정된 인스턴스 컬렉션을 컬렉션 CounterCreationData 에 추가합니다.
public:
void AddRange(System::Diagnostics::CounterCreationDataCollection ^ value);
public void AddRange(System.Diagnostics.CounterCreationDataCollection value);
member this.AddRange : System.Diagnostics.CounterCreationDataCollection -> unit
Public Sub AddRange (value As CounterCreationDataCollection)
매개 변수
기존 컬렉션 CounterCreationData 에 추가할 인스턴스의 컬렉션입니다.
예외
value은 null입니다.
예제
다음 예제에서는 메서드 오버로드를 AddRange(CounterCreationDataCollection) 사용하여 개체를 한 CounterCreationDataCollection 개체에서 다른 CounterCreationDataCollection개체로 추가하는 CounterCreationData 방법을 보여 줍니다.
using System;
using System.Diagnostics;
public class CounterDataCollectionExample
{
public static void Main()
{
try
{
string myCategoryName;
int numberOfCounters;
Console.Write("Enter the number of counters : ");
numberOfCounters = int.Parse(Console.ReadLine());
CounterCreationData[] myCounterCreationData =
new CounterCreationData[numberOfCounters];
for (int i = 0; i < numberOfCounters; i++)
{
Console.Write("Enter the counter name for {0} counter : ", i);
myCounterCreationData[i] = new CounterCreationData();
myCounterCreationData[i].CounterName = Console.ReadLine();
}
CounterCreationDataCollection myCounterCollection =
new CounterCreationDataCollection(myCounterCreationData);
Console.Write("Enter the category Name : ");
myCategoryName = Console.ReadLine();
// Check if the category already exists or not.
if (!PerformanceCounterCategory.Exists(myCategoryName))
{
CounterCreationDataCollection myNewCounterCollection =
new CounterCreationDataCollection();
// Add the 'CounterCreationDataCollection' to 'CounterCreationDataCollection' object.
myNewCounterCollection.AddRange(myCounterCollection);
PerformanceCounterCategory.Create(myCategoryName, "Sample Category",
PerformanceCounterCategoryType.SingleInstance, myNewCounterCollection);
Console.WriteLine("The list of counters in CounterCollection are: ");
for (int i = 0; i < myNewCounterCollection.Count; i++)
Console.WriteLine("Counter {0} is '{1}'", i + 1, myNewCounterCollection[i].CounterName);
}
else
{
Console.WriteLine("The category already exists");
}
}
catch (Exception e)
{
Console.WriteLine("Exception: {0}.", e.Message);
return;
}
}
}
Imports System.Diagnostics
Public Class CounterDataCollectionExample
Private Shared myCounter As PerformanceCounter
Public Shared Sub Main()
Try
Dim myCategoryName As String
Dim numberOfCounters As Integer
Console.Write("Enter the number of counters : ")
numberOfCounters = Integer.Parse(Console.ReadLine())
Dim myCounterCreationData(numberOfCounters-1) As CounterCreationData
Dim i As Integer
For i = 0 To numberOfCounters - 1
Console.Write("Enter the counter name for {0} counter : ", i)
myCounterCreationData(i) = New CounterCreationData()
myCounterCreationData(i).CounterName = Console.ReadLine()
Next i
Dim myCounterCollection As New CounterCreationDataCollection(myCounterCreationData)
Console.Write("Enter the category Name : ")
myCategoryName = Console.ReadLine()
' Check if the category already exists or not.
If Not PerformanceCounterCategory.Exists(myCategoryName) Then
Dim myNewCounterCollection As New CounterCreationDataCollection()
' Add the 'CounterCreationDataCollection' to 'CounterCreationDataCollection' object.
myNewCounterCollection.AddRange(myCounterCollection)
PerformanceCounterCategory.Create(myCategoryName, "Sample Category", _
PerformanceCounterCategoryType.SingleInstance, myNewCounterCollection)
Console.WriteLine("The list of counters in CounterCollection are: ")
For i = 0 To myNewCounterCollection.Count - 1
Console.WriteLine("Counter {0} is '{1}'", i + 1, _
myNewCounterCollection(i).CounterName)
Next i
Else
Console.WriteLine("The category already exists")
End If
Catch e As Exception
Console.WriteLine("Exception: {0}.", e.Message)
Return
End Try
End Sub
End Class