RE: Translating VB.NET-code into C#.NET + ASP.NET

From: M. Rajesh (mrajesh24_ns_at_nospam.hotmail.com)
Date: 08/07/04


Date: Sat, 7 Aug 2004 04:53:01 -0700

Hi,

I think that this is quite simple for you to do it yourself. Just follow the
syntax for C# and also how to declare variables and instantiate them.

Regards
M. Rajesh
.Net and Windows Shell MVP
www.winxpsolution.com.

"Sjakie" wrote:

> This is the code I like to see translated in C#, but I can't do it myself.
> Can somebody help me with this one??
>
>
> Sub Application_AuthenticateRequest(sender As Object, e As EventArgs)
> If Request.IsAuthenticated Then
> 'Determine this user's roles
> Dim reader As SqlDataReader = _
> SqlHelper.ExecuteReader(connection string, _
> CommandType.StoredProcedure, "rolesForUser", _
> New SqlParameter("@Username", User.Identity.Name))
>
> ' Create an array of role names
> Dim roleList As New ArrayList
> Do While reader.Read()
> roleList.Add(reader("Name"))
> Loop
>
> 'Convert the roleList ArrayList to a String array
> Dim roleListArray As String() = roleList.ToArray(GetType(String))
>
> 'Add the roles to the User Principal
> HttpContext.Current.User = _
> New GenericPrincipal(User.Identity, roleListArray)
> End If
> End Sub
>
>
>
>
> Thanx



Relevant Pages


Loading