Freigeben über


PrivateComponentAttribute-Konstruktor

Initialisiert eine neue Instanz der PrivateComponentAttribute-Klasse.

Namespace: System.EnterpriseServices
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)

Syntax

'Declaration
Public Sub New
'Usage
Dim instance As New PrivateComponentAttribute
public PrivateComponentAttribute ()
public:
PrivateComponentAttribute ()
public PrivateComponentAttribute ()
public function PrivateComponentAttribute ()

Beispiel

Im folgenden Codebeispiel wird ein neues PrivateComponentAttribute erstellt.

' Note: Access checks must be performed at the component level to allow access
' to private components.

<assembly: ApplicationAccessControl(False, AccessChecksLevel := AccessChecksLevelOption.ApplicationComponent)>


<PrivateComponent()>  _
Public Class PrivateComponentAttribute_Example
    Inherits ServicedComponent
    
    Public Sub Example() 
        ' Display some output.
        MsgBox("Private component called successfully.")
    
    End Sub 'Example
End Class 'PrivateComponentAttribute_Example
// Note: Access checks must be performed at the component level to allow access
// to private components.
[assembly: ApplicationAccessControl(false,
AccessChecksLevel=AccessChecksLevelOption.ApplicationComponent)]

[PrivateComponent]
public class PrivateComponentAttribute_Example : ServicedComponent
{
    public void Example()
    {
        // Display some output.
        Console.WriteLine("Private component called successfully.");
    }
}
// Note: Access checks must be performed at the component level to allow access
// to private components.
[assembly: ApplicationAccessControl(false,
AccessChecksLevel=AccessChecksLevelOption::ApplicationComponent)];

[PrivateComponent]
public ref class PrivateComponentAttributeExample : public ServicedComponent
{
public:
    void DisplayMessage()
    {
        // Display some output.
        Console::WriteLine("Private component called successfully.");
    }
};
// Note: Access checks must be performed at the component level to allow access
// to private components.
/** @assembly ApplicationAccessControl(false, AccessChecksLevel =
    AccessChecksLevelOption.ApplicationComponent)
 */

/** @attribute PrivateComponent()
 */
public class PrivateComponentAttribute_Example extends ServicedComponent
{
    public void Example()
    {
        // Display some output.
        Console.WriteLine("Private component called successfully.");
    } //Example
} //PrivateComponentAttribute_Example

.NET Framework-Sicherheit

  • Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter .

Plattformen

Windows 98, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

PrivateComponentAttribute-Klasse
PrivateComponentAttribute-Member
System.EnterpriseServices-Namespace