|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
System.ReflectionIs there a way to determine that an assembly is running under an ASP.NET web
application as opposed to a Windows application? For example, in an ASP.NET application if I call Assembly.GetExecutingAssembly(), can I determine that the current assembly is a web application? JV wrote:
> Is there a way to determine that an assembly is running under an ASP.NET web You can check what class it's derived from, eg WinForm vs WebForm> application as opposed to a Windows application? > > For example, in an ASP.NET application if I call > Assembly.GetExecutingAssembly(), can I determine that the current assembly > is a web application? > > JV,
I think a good way to test whether or not you are running in an ASP.NET application is to access the static Current property on the HttpContext class. If it is not running in ASP.NET, then the property should return null. Hope this helps. -- Show quoteHide quote- Nicholas Paldino [.NET/C# MVP] - mvp@spam.guard.caspershouse.com "JV" <johnNOSPAMme@goisc.com> wrote in message news:OPATXEaJFHA.1280@TK2MSFTNGP09.phx.gbl... > Is there a way to determine that an assembly is running under an ASP.NET > web application as opposed to a Windows application? > > For example, in an ASP.NET application if I call > Assembly.GetExecutingAssembly(), can I determine that the current assembly > is a web application? > Be aware if your solution doesn't have a reference to System.Web.dll, it
will throw an exception if you access System.Web.HttpContext. bill Show quoteHide quote "Nicholas Paldino [.NET/C# MVP]" <mvp@spam.guard.caspershouse.com> wrote in message news:Olu$BMaJFHA.1172@TK2MSFTNGP12.phx.gbl... > JV, > > I think a good way to test whether or not you are running in an ASP.NET > application is to access the static Current property on the HttpContext > class. If it is not running in ASP.NET, then the property should return > null. > > Hope this helps. > > > -- > - Nicholas Paldino [.NET/C# MVP] > - mvp@spam.guard.caspershouse.com > > "JV" <johnNOSPAMme@goisc.com> wrote in message > news:OPATXEaJFHA.1280@TK2MSFTNGP09.phx.gbl... > > Is there a way to determine that an assembly is running under an ASP.NET > > web application as opposed to a Windows application? > > > > For example, in an ASP.NET application if I call > > Assembly.GetExecutingAssembly(), can I determine that the current assembly > > is a web application? > > > > bill:
I think you meant to say "yield a compiler error", not "throw an exception exception".... -- Show quoteHide quoteScott http://www.OdeToCode.com/blogs/scott/ On Thu, 10 Mar 2005 14:08:08 -0600, "William F. Robertson, Jr." <the***@nameht.org> wrote: >Be aware if your solution doesn't have a reference to System.Web.dll, it >will throw an exception if you access System.Web.HttpContext. > >bill > Thanks for making me think about my response. <grin> I actually didn't
even mean exception, infact after reading my response, I think I just randomly typed something in that sounded good... Not all threads in a asp.net application have a HttpContext.Current attached to it. You can use the HttpContext.Current if you want to know if the calling thread ( current context) is currently processing a request through the Http Pipeline, but it is not a reliable indicator that the calling assembly is a windows application, or a web app. Timers, callbacks, user created threads, etc will have a null value and can be from either. Thanks for straightening me out Scott! bill Show quoteHide quote "Scott Allen" <scott@nospam.odetocode.com> wrote in message news:csd131dhjmjjeuh906jql1a5f1l1bepett@4ax.com... > bill: > > I think you meant to say "yield a compiler error", not "throw an > exception exception".... > > -- > Scott > http://www.OdeToCode.com/blogs/scott/ > > On Thu, 10 Mar 2005 14:08:08 -0600, "William F. Robertson, Jr." > <the***@nameht.org> wrote: > > >Be aware if your solution doesn't have a reference to System.Web.dll, it > >will throw an exception if you access System.Web.HttpContext. > > > >bill > > > I have not tried this,
but instead of Assembly.GetExecutingAssembly(), try Assembly.GetEntryAssembly()... Greetings, Henning Krause [MVP] ========================== Visit my website: http://www.infinitec.de Try my free Exchange Explorer: Mistaya (http://www.infinitec.de/software/mistaya.aspx) Show quoteHide quote "JV" <johnNOSPAMme@goisc.com> wrote in message news:OPATXEaJFHA.1280@TK2MSFTNGP09.phx.gbl... > Is there a way to determine that an assembly is running under an ASP.NET web > application as opposed to a Windows application? > > For example, in an ASP.NET application if I call > Assembly.GetExecutingAssembly(), can I determine that the current assembly > is a web application? > >
Other interesting topics
How to dynamically load strong name assemblies
Protecting Assembly against disassembling... Strong Typing of Primitive Types Events & Delegates Process.Start - The requested lookup key was not found in any active activation context. streamreader halt simple confirmation on XML comments ... Checking whether "SomeString" is Directory or File... Any hints on how to use the MvpSerializerFormatter with EntLib? To get crystal reports in .NET to use the hot fix assemblies |
|||||||||||||||||||||||