Evento Server.SessionClosing
Ocorre quando a sessão entre o servidor que tem a instância em execução do Analysis Services e o cliente começa a fechar, mas antes da sessão ser fechada finalmente.
Namespace: Microsoft.AnalysisServices.AdomdServer
Assembly: msmgdsrv (em msmgdsrv.dll)
Sintaxe
'Declaração
Public Event SessionClosing As EventHandler
'Uso
Dim instance As Server
Dim handler As EventHandler
AddHandler instance.SessionClosing, handler
public event EventHandler SessionClosing
public:
event EventHandler^ SessionClosing {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
member SessionClosing : IEvent<EventHandler,
EventArgs>
JScript dá suporte ao uso de eventos, mas não à declaração de eventos novos.
Comentários
O código a seguir faz parte das Extensões de personalização do Analysis Services (ASPE) e mostra como usar os eventos SessionClosing e SessionOpened.
Dica
O código de exemplo a seguir também pode ser baixado do site Microsoft SQL Server Samples and Community Projects.
Exemplos
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AnalysisServices.AdomdServer;
namespace ISV_1.ASClientExtensions
{
[PlugInAttribute]
public class ASClientExtensions
{
public ASClientExtensions()
{
Context.Server.SessionOpened += new EventHandler(this.SessionOpened);
Context.Server.SessionClosing += new EventHandler(this.SessionClosing);
//Verify and set environment for ClientExtensions.
AuthoringAndManagement environment = new AuthoringAndManagement();
}
~ASClientExtensions()
{
}
public void SessionOpened(object sender, EventArgs e)
{
// This will subscribe to the events.
SessionMgr session = new SessionMgr();
}
public void SessionClosing(object sender, EventArgs e)
{
}
}
}