AggregationDesignCollection.Add 메서드

정의

오버로드

Add()

생성된 고유한 Name과 식별자를 사용하여 AggregationDesign 개체를 새로 만들고, 컬렉션의 끝에 추가하고, 새로 만든 AggregationDesign을 반환합니다.

Add(AggregationDesign)

지정된 AggregationDesign을 컬렉션의 끝에 추가합니다.

Add(String)

지정한 이름을 사용하여 AggregationDesign 개체를 새로 만들고, 컬렉션의 끝에 추가하고, 새로 만든 AggregationDesign을 반환합니다.

Add(String, String)

지정한 이름과 식별자를 사용하여 AggregationDesign 개체를 새로 만들고, 컬렉션의 끝에 추가하고, 새로 만든 AggregationDesign을 반환합니다.

Add()

생성된 고유한 Name과 식별자를 사용하여 AggregationDesign 개체를 새로 만들고, 컬렉션의 끝에 추가하고, 새로 만든 AggregationDesign을 반환합니다.

public Microsoft.AnalysisServices.AggregationDesign Add ();
override this.Add : unit -> Microsoft.AnalysisServices.AggregationDesign
Public Function Add () As AggregationDesign

반환

새로 만든 AggregationDesign 개체입니다.

적용 대상

Add(AggregationDesign)

지정된 AggregationDesign을 컬렉션의 끝에 추가합니다.

public int Add (Microsoft.AnalysisServices.AggregationDesign item);
override this.Add : Microsoft.AnalysisServices.AggregationDesign -> int
Public Function Add (item As AggregationDesign) As Integer

매개 변수

item
AggregationDesign

추가할 AggregationDesign입니다.

반환

AggregationDesign을 컬렉션에 추가한 인덱스(0부터 시작)입니다.

예외

  • 지정된 항목은 null 참조(Visual Basic의 경우 Nothing)입니다.
  • 지정된 항목이 이미 컬렉션에 있습니다.
  • 지정된 AggregationDesign 의 식별자가 컬렉션에서 유효하지 않습니다.
  • 지정된 AggregationDesign 의 이름이 컬렉션에서 유효하지 않습니다.
  • 지정된 AggregationDesign 의 호환성 수준이 컬렉션에서 유효하지 않습니다.

적용 대상

Add(String)

지정한 이름을 사용하여 AggregationDesign 개체를 새로 만들고, 컬렉션의 끝에 추가하고, 새로 만든 AggregationDesign을 반환합니다.

public Microsoft.AnalysisServices.AggregationDesign Add (string name);
override this.Add : string -> Microsoft.AnalysisServices.AggregationDesign
Public Function Add (name As String) As AggregationDesign

매개 변수

name
String

AggregationDesign 개체의 이름입니다.

반환

새로 만든 AggregationDesign 개체입니다.

예외

지정된 이름이 컬렉션에서 유효하지 않습니다.

설명

AggregationDesign 개체의 식별자는 지정된 이름을 기반으로 생성됩니다.

적용 대상

Add(String, String)

지정한 이름과 식별자를 사용하여 AggregationDesign 개체를 새로 만들고, 컬렉션의 끝에 추가하고, 새로 만든 AggregationDesign을 반환합니다.

public Microsoft.AnalysisServices.AggregationDesign Add (string name, string id);
override this.Add : string * string -> Microsoft.AnalysisServices.AggregationDesign
Public Function Add (name As String, id As String) As AggregationDesign

매개 변수

name
String

AggregationDesign 개체의 이름입니다.

id
String

AggregationDesign 개체의 식별자입니다.

반환

새로 만든 AggregationDesign 개체입니다.

예외

  • 지정된 이름이 컬렉션에서 유효하지 않습니다.
  • 지정된 식별자가 컬렉션에서 유효하지 않습니다.

적용 대상