de la propiedad SPVirtualServerConfig.EventHandlersEnabled
NOTA: esta API está ahora obsoleta.
Obtiene o establece un valor booleano que especifica si están habilitados los controladores de eventos para bibliotecas de documentos.
Espacio de nombres: Microsoft.SharePoint.Administration
Ensamblado: Microsoft.SharePoint (en Microsoft.SharePoint.dll)
Sintaxis
'Declaración
<ObsoleteAttribute("Use V3 style events")> _
Public Property EventHandlersEnabled As Boolean
Get
Set
'Uso
Dim instance As SPVirtualServerConfig
Dim value As Boolean
value = instance.EventHandlersEnabled
instance.EventHandlersEnabled = value
[ObsoleteAttribute("Use V3 style events")]
public bool EventHandlersEnabled { get; set; }
Valor de propiedad
Tipo: System.Boolean
true si están habilitados los controladores de eventos; en caso contrario, false.
Comentarios
Establecer el valor de la propiedad EventHandlersEnabled requiere una llamada a Update para confirmar los cambios de propiedad en la base de datos.
Para obtener información sobre cómo usar eventos de la biblioteca de documentos, consulte Walkthrough: Handling Document Library Events.
Ejemplos
En el ejemplo de código siguiente se permite a los controladores de eventos para bibliotecas de documentos en el servidor virtual especificado.
Dim globalAdmin As New SPGlobalAdmin()
Dim uri As New System.Uri("http://Server_Name")
Dim vServer As SPVirtualServer = globalAdmin.OpenVirtualServer(uri)
Dim vConfig As SPVirtualServerConfig = vServer.Config
vConfig.EventHandlersEnabled = True
vConfig.Properties.Update()
globalAdmin.Close()
SPGlobalAdmin globalAdmin = new SPGlobalAdmin();
System.Uri uri = new System.Uri("http://Server_Name");
SPVirtualServer vServer = globalAdmin.OpenVirtualServer(uri);
SPVirtualServerConfig vConfig = vServer.Config;
vConfig.EventHandlersEnabled = true;
vConfig.Properties.Update();
globalAdmin.Close();