0

在我的自定义 ServiceAuthenticationManager 中,在 Authenticate 之前是否会调用任何方法?

4

2 回答 2

0

不,因为它是唯一不从对象继承的可用方法。

于 2012-05-21T11:45:44.930 回答
0

如果我没记错的话,将 Global.asax 文件添加到您的服务中,然后为“Application_Start”添加一个事件处理程序:

protected void Application_Start(object sender, EventArgs e)
{
    // YOUR CODE
}

首次调用应用程序(包括 WFC 服务)时会触发此事件。查看应用程序周期概述

于 2012-05-21T11:55:43.303 回答