OutputGroup.CanonicalName 속성
이 출력 그룹에 사용된 고유 이름을 가져옵니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
ReadOnly Property CanonicalName As String
string CanonicalName { get; }
property String^ CanonicalName {
String^ get ();
}
abstract CanonicalName : string with get
function get CanonicalName () : String
속성 값
형식: String
출력 그룹에 사용된 이름을 나타내는 문자열입니다.
예제
Sub CanonicalNameExample(ByVal dte As DTE2)
' Before running this example, open a project.
' Display the output groups of the first project.
Dim proj As Project = dte.Solution.Item(1)
Dim con As Configuration = _
proj.ConfigurationManager.ActiveConfiguration
Dim names As String = ""
Dim og As OutputGroup
For Each og In con.OutputGroups
names &= og.CanonicalName & vbCrLf
Next
MsgBox(proj.Name & "'s " & con.ConfigurationName & _
" output groups:" & vbCrLf & vbCrLf & names)
End Sub
public void CanonicalNameExample(DTE2 dte)
{
// Before running this example, open a project.
// Display the output groups of the first project.
Project proj = dte.Solution.Item(1);
Configuration con = proj.ConfigurationManager.ActiveConfiguration;
string names = "";
foreach (OutputGroup og in con.OutputGroups)
{
names += og.CanonicalName + Environment.NewLine;
}
MessageBox.Show(proj.Name + "'s " + con.ConfigurationName +
" output groups:" + Environment.NewLine + Environment.NewLine +
names);
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용를 참조하세요.