CountdownEvent.AddCount 메서드

정의

'의 현재 수를 증분합니다 CountdownEvent.

오버로드

Name Description
AddCount()

'의 현재 개수를 1씩 증분합니다 CountdownEvent.

AddCount(Int32)

'의 현재 개수를 지정된 값으로 증 CountdownEvent분합니다.

AddCount()

Source:
CountdownEvent.cs
Source:
CountdownEvent.cs
Source:
CountdownEvent.cs
Source:
CountdownEvent.cs
Source:
CountdownEvent.cs

'의 현재 개수를 1씩 증분합니다 CountdownEvent.

public:
 void AddCount();
public void AddCount();
member this.AddCount : unit -> unit
Public Sub AddCount ()

예외

현재 인스턴스가 이미 삭제되었습니다.

현재 인스턴스가 이미 설정되어 있습니다.

-또는-

CurrentCountInt32.MaxValue보다 크거나 같은 경우

추가 정보

적용 대상

AddCount(Int32)

Source:
CountdownEvent.cs
Source:
CountdownEvent.cs
Source:
CountdownEvent.cs
Source:
CountdownEvent.cs
Source:
CountdownEvent.cs

'의 현재 개수를 지정된 값으로 증 CountdownEvent분합니다.

public:
 void AddCount(int signalCount);
public void AddCount(int signalCount);
member this.AddCount : int -> unit
Public Sub AddCount (signalCount As Integer)

매개 변수

signalCount
Int32

늘릴 CurrentCount값입니다.

예외

현재 인스턴스가 이미 삭제되었습니다.

signalCount 가 0보다 작거나 같습니다.

현재 인스턴스가 이미 설정되어 있습니다.

-또는-

CurrentCount개수가 증분된 후 signalCount보다 크거나 같습니다.

추가 정보

적용 대상