本文整理汇总了VB.NET中System.Web.ApplicationServices.AuthenticationService.Authenticating事件的典型用法代码示例。如果您正苦于以下问题:VB.NET AuthenticationService.Authenticating事件的具体用法?VB.NET AuthenticationService.Authenticating怎么用?VB.NET AuthenticationService.Authenticating使用的例子?那么恭喜您, 这里精选的事件代码示例或许可以为您提供帮助。
在下文中一共展示了AuthenticationService.Authenticating事件的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Application_Start
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
AddHandler System.Web.ApplicationServices.AuthenticationService.Authenticating, _
AddressOf Me.AuthenticationService_Authenticating
End Sub
开发者ID:VB.NET开发者,项目名称:System.Web.ApplicationServices,代码行数:4,代码来源:AuthenticationService.Authenticating
示例2: String
Sub AuthenticationService_Authenticating _
(ByVal sender As Object, _
ByVal e As System.Web.ApplicationServices.AuthenticatingEventArgs)
Dim studentid As String = String.Empty
Dim answer As String = String.Empty
Dim credentials As String() = _
e.CustomCredential.Split(New Char() {","c})
If (credentials.Length > 0) Then
studentid = credentials(0)
If (credentials.Length > 1) Then
answer = credentials(1)
End If
End If
Try
e.Authenticated = _
StudentAuthentication.ValidateStudentCredentials _
(e.Username, e.Password, studentid, answer)
Catch ex As ArgumentNullException
e.Authenticated = False
End Try
e.AuthenticationIsComplete = True
End Sub
开发者ID:VB.NET开发者,项目名称:System.Web.ApplicationServices,代码行数:26,代码来源:AuthenticationService.Authenticating