CountdownEvent.AddCount 메서드

정의

CountdownEvent의 현재 수를 1씩 늘립니다.

오버로드

AddCount()

CountdownEvent의 현재 수를 1씩 늘립니다.

AddCount(Int32)

CountdownEvent의 현재 수를 지정된 값만큼 늘립니다.

AddCount()

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

CountdownEvent의 현재 수를 1씩 늘립니다.

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

예외

현재 인스턴스가 이미 삭제된 경우

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

또는

CurrentCount이 Int32.MaxValue보다 크거나 같습니다.

추가 정보

적용 대상

AddCount(Int32)

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보다 작거나 같은 경우

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

또는

CurrentCountInt32.MaxValue 와 같거나 보다 큰 경우 개수가 에 의해 signalCount증가합니다.

추가 정보

적용 대상