Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is CLR hosting?

What is CLR hosting? What is the use case for that?

like image 376
Yaron Naveh Avatar asked Feb 27 '10 17:02

Yaron Naveh


3 Answers

See here for information about CLR hosting that was relevant for CLR v2 (.NET 2.0, 3.0 and 3.5). For information about the newer CLR Hosting API in .NET 4.0, see here.

Basically, the CLR acts as a library that can be loaded and "hosted" by a process. You can develop an app that loads and hosts the CLR if you wish; that would allow your app to contain a whole CLR virtual machine, load assemblies and run .NET managed code all within it.

SQL Server 2008, for example, can do this. You can write .NET code that is stored in a SQL Server database and run from within the SQL Server database engine. SQL Server is hosting the CLR to achieve that.

A CLR host other than the Windows shell (the usual user interface) can provide a specific context for your code to run. This can be useful for specialised applications or very particular scenarios. MSDN (link above) has some guidelines on these matters.

like image 60
CesarGon Avatar answered Sep 27 '22 00:09

CesarGon


CLR Hosting is Hosting the .NET Common Language Runtime in a process of your choice.

The use case would be situations where existing environments don't suit your requirements. Some of the existing environments are ASP.NET, WinForms, Windows Workflow Foundation, etc. If these don't suit your requirements, you can host it yourself.

like image 24
John Saunders Avatar answered Sep 27 '22 00:09

John Saunders


CLR Hosting is Hosting uses .NEt application.When you start the .NET runtime inside a native process, that native application becomes a host for the runtime. This lets you add .NET capabilities to your native applications.

If the runtime is running, but it hasn't got any loaded user code yet. Some internal thread scheduler and garbage collector are surely running, because they are part of the CLR runtime It is very complicated than other hosting services.

like image 35
user1947824 Avatar answered Sep 24 '22 00:09

user1947824