CookieContainer.Capacity 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
CookieContainer가 보유할 수 있는 Cookie 인스턴스의 수를 가져오거나 설정합니다.
public:
property int Capacity { int get(); void set(int value); };
public:
property int Capacity { int get(); };
public int Capacity { get; set; }
public int Capacity { get; }
member this.Capacity : int with get, set
member this.Capacity : int
Public Property Capacity As Integer
Public ReadOnly Property Capacity As Integer
속성 값
Cookie가 보유할 수 있는 CookieContainer 인스턴스의 수입니다. 이 한계는 초과할 수 없는 한계이므로 Cookie를 추가할 때 이 한계를 초과하지 않도록 합니다.
예외
Capacity
가 0보다 작거나 같음(값이 보다 PerDomainCapacity 작고 Int32.MaxValue와 PerDomainCapacity 같지 않음).
설명
가 같거나 초과Capacity하면 Count 하나 이상의 Cookie 인스턴스가 컨테이너에서 제거됩니다. 범위에서 만료된 Cookie 인스턴스가 있는 경우 다음과 같이 아래 Capacity 를 가져올 Count 만큼 충분한 인스턴스가 제거됩니다. 그렇지 않은 경우 가장 최근에 사용된 CookieCollection 가 컨테이너에서 발견되고 제거됩니다.
Capacity는 PerDomainCapacity보다 크거나 같아야 합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET