If this method was public then I could use it to do custom redirection in my project like this:
If Request.Browser.IsMobileDevice = True Then
If FiftyOne.Foundation.Mobile.Redirection.RedirectModule.IsFirstTime(HttpContext.Current) Then
Response.Redirect(MobilePageURL)
End If
End If
Is there a reason I should not be doing that? I have recompiled your dll and made the method public but I have not moved the code to a production environment.