ProviderConnectionPointCollection 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ProviderConnectionPointCollection 클래스의 새 인스턴스를 초기화합니다.
오버로드
ProviderConnectionPointCollection() |
ProviderConnectionPointCollection 클래스의 비어 있는 새 인스턴스를 초기화합니다. |
ProviderConnectionPointCollection(ICollection) |
공급자 연결 지점의 지정된 컬렉션을 사용하여 ProviderConnectionPointCollection 클래스의 새 인스턴스를 초기화합니다. |
설명
코드에서 직접 클래스의 ProviderConnectionPointCollection 새 인스턴스를 만들 수 있지만 클래스가 클래스에서 ReadOnlyCollectionBase 상속되므로 새 컬렉션은 읽기 전용이며 만든 후에는 멤버를 추가하거나 제거할 수 없습니다.
ProviderConnectionPointCollection()
ProviderConnectionPointCollection 클래스의 비어 있는 새 인스턴스를 초기화합니다.
public:
ProviderConnectionPointCollection();
public ProviderConnectionPointCollection ();
Public Sub New ()
설명
이 생성자의 새 인스턴스를 만듭니다를 ProviderConnectionPointCollection 클래스 컬렉션에 항목이 없습니다.
추가 정보
적용 대상
ProviderConnectionPointCollection(ICollection)
공급자 연결 지점의 지정된 컬렉션을 사용하여 ProviderConnectionPointCollection 클래스의 새 인스턴스를 초기화합니다.
public:
ProviderConnectionPointCollection(System::Collections::ICollection ^ connectionPoints);
public ProviderConnectionPointCollection (System.Collections.ICollection connectionPoints);
new System.Web.UI.WebControls.WebParts.ProviderConnectionPointCollection : System.Collections.ICollection -> System.Web.UI.WebControls.WebParts.ProviderConnectionPointCollection
Public Sub New (connectionPoints As ICollection)
매개 변수
- connectionPoints
- ICollection
컬렉션을 만드는 데 사용되는 ICollection 개체의 ProviderConnectionPoint입니다.
예외
connectionPoints
이(가) null
인 경우
컬렉션에 null 연결 지점이 포함된 경우
또는
컬렉션에 ProviderConnectionPoint 형식이 아닌 개체가 포함된 경우
또는
연결 지점 컬렉션에 중복된 ID가 있는 경우
설명
이 생성자의 새 인스턴스를 만듭니다는 ProviderConnectionPointCollection 클래스 및에 포함 된 연결 지점 추가 connectionPoints
매개 변수입니다.
이 생성자를 사용하여 기존 ProviderConnectionPoint 개체의 컬렉션을 만든 ICollection 다음 해당 컬렉션을 생성자에 전달하여 공급자 연결 지점의 고유한 컬렉션 개체를 ProviderConnectionPointCollection(ICollection) 만들 수 있습니다. 그러나 컨트롤이 메서드를 포함하여 공급자 연결점과 관련된 가장 일반적인 작업에 필요한 메서드를 제공하기 때문에 WebPartManager 컨트롤을 확장하지 않는 한 사용자 고유의 GetProviderConnectionPoints 컬렉션을 만들 필요가 거의 없습니다.
추가 정보
적용 대상
.NET