ObjectIdentifier 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
| Name | Description |
|---|---|
| ObjectIdentifier(IEnumerable<String>) |
이름을 사용하여 개체 식별자를 만듭니다. |
| ObjectIdentifier(IList<String>) |
이름을 사용하여 개체 식별자를 만듭니다. |
| ObjectIdentifier(String[]) |
이름을 사용하여 개체 식별자를 만듭니다. |
| ObjectIdentifier(IList<String>, IList<String>) |
외부 파트를 포함하는 이름으로 개체 식별자를 만듭니다. |
ObjectIdentifier(IEnumerable<String>)
이름을 사용하여 개체 식별자를 만듭니다.
public ObjectIdentifier(System.Collections.Generic.IEnumerable<string> parts);
new Microsoft.SqlServer.Dac.Model.ObjectIdentifier : seq<string> -> Microsoft.SqlServer.Dac.Model.ObjectIdentifier
Public Sub New (parts As IEnumerable(Of String))
매개 변수
- parts
- IEnumerable<String>
식별자의 부분
적용 대상
ObjectIdentifier(IList<String>)
이름을 사용하여 개체 식별자를 만듭니다.
public ObjectIdentifier(System.Collections.Generic.IList<string> parts);
new Microsoft.SqlServer.Dac.Model.ObjectIdentifier : System.Collections.Generic.IList<string> -> Microsoft.SqlServer.Dac.Model.ObjectIdentifier
Public Sub New (parts As IList(Of String))
매개 변수
적용 대상
ObjectIdentifier(String[])
이름을 사용하여 개체 식별자를 만듭니다.
public ObjectIdentifier(params string[] parts);
new Microsoft.SqlServer.Dac.Model.ObjectIdentifier : string[] -> Microsoft.SqlServer.Dac.Model.ObjectIdentifier
Public Sub New (ParamArray parts As String())
매개 변수
- parts
- String[]
식별자의 부분
적용 대상
ObjectIdentifier(IList<String>, IList<String>)
외부 파트를 포함하는 이름으로 개체 식별자를 만듭니다.
public ObjectIdentifier(System.Collections.Generic.IList<string> externalParts, System.Collections.Generic.IList<string> parts);
new Microsoft.SqlServer.Dac.Model.ObjectIdentifier : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> -> Microsoft.SqlServer.Dac.Model.ObjectIdentifier
Public Sub New (externalParts As IList(Of String), parts As IList(Of String))