RunInstallerAttribute 클래스
어셈블리가 설치될 때 Visual Studio 사용자 지정 동작 설치 관리자 또는 설치 관리자 도구(Installutil.exe)의 호출 여부를 지정합니다.
네임스페이스: System.ComponentModel
어셈블리: System(system.dll)
구문
‘선언
<AttributeUsageAttribute(AttributeTargets.Class)> _
Public Class RunInstallerAttribute
Inherits Attribute
‘사용 방법
Dim instance As RunInstallerAttribute
[AttributeUsageAttribute(AttributeTargets.Class)]
public class RunInstallerAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Class)]
public ref class RunInstallerAttribute : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Class) */
public class RunInstallerAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Class)
public class RunInstallerAttribute extends Attribute
설명
Installer에서 상속하는 클래스가 true로 설정된 RunInstallerAttribute로 표시되면 어셈블리가 설치될 때 Visual Studio의 사용자 지정 동작 설치 관리자나 InstallUtil.exe가 호출됩니다. false로 설정된 RunInstallerAttribute로 표시된 멤버는 설치 관리자를 호출하지 않습니다. 기본값은 false입니다.
참고
true로 설정된 RunInstallerAttribute로 속성을 표시하면 이 특성의 값이 상수 멤버 Yes로 설정됩니다. false로 설정된 RunInstallerAttribute로 표시된 속성의 경우 값이 No입니다. 따라서 코드에서 이 특성의 값을 확인하려면 해당 특성을 RunInstallerAttribute.Yes 또는 RunInstallerAttribute.No로 지정해야 합니다.
자세한 내용은 특성 개요 및 특성을 사용하여 메타데이터 확장을 참조하십시오.
예제
다음 예제에서는 설치 관리자가 MyProjectInstaller
에서 실행되도록 지정합니다.
<RunInstallerAttribute(True)> _
Public Class MyProjectInstaller
Inherits Installer
' Insert code here.
End Class 'MyProjectInstaller
[RunInstallerAttribute(true)]
public class MyProjectInstaller : Installer {
// Insert code here.
}
[RunInstallerAttribute(true)]
ref class MyProjectInstaller: public Installer{
// Insert code here.
};
/** @attribute RunInstallerAttribute(true)
*/
public static class MyProjectInstaller extends Installer
{
// Insert code here.
} //MyProjectInstaller
다음 예제에서는 MyProjectInstaller
의 인스턴스를 만듭니다. 그런 다음 클래스에 대한 특성을 가져오고 RunInstallerAttribute을 추출한 후 설치 관리자를 실행할지 여부를 출력합니다.
Public Shared Function Main() As Integer
' Creates a new installer.
Dim myNewProjectInstaller As New MyProjectInstaller()
' Gets the attributes for the collection.
Dim attributes As AttributeCollection = TypeDescriptor.GetAttributes(myNewProjectInstaller)
' Prints whether to run the installer by retrieving the
' RunInstallerAttribute from the AttributeCollection.
Dim myAttribute As RunInstallerAttribute = _
CType(attributes(GetType(RunInstallerAttribute)), RunInstallerAttribute)
Console.WriteLine(("Run the installer? " & myAttribute.RunInstaller.ToString()))
Return 0
End Function 'Main
public static int Main() {
// Creates a new installer.
MyProjectInstaller myNewProjectInstaller = new MyProjectInstaller();
// Gets the attributes for the collection.
AttributeCollection attributes = TypeDescriptor.GetAttributes(myNewProjectInstaller);
/* Prints whether to run the installer by retrieving the
* RunInstallerAttribute from the AttributeCollection. */
RunInstallerAttribute myAttribute =
(RunInstallerAttribute)attributes[typeof(RunInstallerAttribute)];
Console.WriteLine("Run the installer? " + myAttribute.RunInstaller.ToString());
return 0;
}
int main()
{
// Creates a new installer.
MyProjectInstaller^ myNewProjectInstaller = gcnew MyProjectInstaller;
// Gets the attributes for the collection.
AttributeCollection^ attributes = TypeDescriptor::GetAttributes( myNewProjectInstaller );
/* Prints whether to run the installer by retrieving the
* RunInstallerAttribute from the AttributeCollection. */
RunInstallerAttribute^ myAttribute = dynamic_cast<RunInstallerAttribute^>(attributes[ RunInstallerAttribute::typeid ]);
Console::WriteLine( "Run the installer? {0}", myAttribute->RunInstaller );
return 0;
}
public static void main(String[] args)
{
// Creates a new installer.
MyProjectInstaller myNewProjectInstaller = new MyProjectInstaller();
// Gets the attributes for the collection.
AttributeCollection attributes =
TypeDescriptor.GetAttributes(myNewProjectInstaller);
/* Prints whether to run the installer by retrieving the
RunInstallerAttribute from the AttributeCollection.
*/
RunInstallerAttribute myAttribute =
((RunInstallerAttribute)(attributes.get_Item(
RunInstallerAttribute.class.ToType())));
Console.WriteLine(("Run the installer? "
+ System.Convert.ToString(myAttribute.get_RunInstaller())));
} //main
상속 계층 구조
System.Object
System.Attribute
System.ComponentModel.RunInstallerAttribute
스레드로부터의 안전성
이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.
플랫폼
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
참고 항목
참조
RunInstallerAttribute 멤버
System.ComponentModel 네임스페이스
Attribute
Installer