<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: netload - is there a NET UNLOAD command? in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/7545278#M72262</link>
    <description>&lt;P&gt;Go look at the Package Contents file, and comment out the &amp;lt;components&amp;gt;&amp;lt;/components&amp;gt; part of the dll you wish not to have loaded when autocad starts up.&lt;/P&gt;</description>
    <pubDate>Wed, 15 Nov 2017 08:43:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-11-15T08:43:50Z</dc:date>
    <item>
      <title>netload - is there a NET UNLOAD command?</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404002#M72255</link>
      <description>Is there a way to unload a .dll other than exit autocad?</description>
      <pubDate>Tue, 30 Dec 2008 21:22:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404002#M72255</guid>
      <dc:creator>fieldguy</dc:creator>
      <dc:date>2008-12-30T21:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: netload - is there a NET UNLOAD command?</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404003#M72256</link>
      <description>No.</description>
      <pubDate>Tue, 30 Dec 2008 21:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404003#M72256</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-12-30T21:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: netload - is there a NET UNLOAD command?</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404004#M72257</link>
      <description>Thanks</description>
      <pubDate>Tue, 30 Dec 2008 21:39:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404004#M72257</guid>
      <dc:creator>fieldguy</dc:creator>
      <dc:date>2008-12-30T21:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: netload - is there a NET UNLOAD command?</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404005#M72258</link>
      <description>Might there ever be a way? :o)

Edited by: mamj@topsoe.dk on Jul 24, 2009 2:22 PM</description>
      <pubDate>Fri, 24 Jul 2009 13:22:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404005#M72258</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-07-24T13:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: netload - is there a NET UNLOAD command?</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404006#M72259</link>
      <description>I don't proclaim to understand all of the possible reasons, but the way I hear it, the reason there is no Unload has to do with the .NET framework, not AutoCAD. The root of the situation is that .NET assemblies cannot be unloaded from an AppDomain.&lt;BR /&gt;
There is more info &lt;A href="http://blogs.msdn.com/jasonz/archive/2004/05/31/145105.aspx"&gt;here:&lt;/A&gt; if you are interested.

Edited by: chiefbraincloud on Jul 24, 2009 12:11 PM</description>
      <pubDate>Fri, 24 Jul 2009 18:10:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404006#M72259</guid>
      <dc:creator>chiefbraincloud</dc:creator>
      <dc:date>2009-07-24T18:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: netload - is there a NET UNLOAD command?</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404007#M72260</link>
      <description>However, it is possible to unload an AppDomain. If Autodesk really wanted to, they could figure out a way to unload/reload assemblies. For instance, you could either maintain a separate AppDomain for each add-on assembly, or if a single AppDomain was used, you could unload and reload it without a specific add-on assembly. Either way would have the effect of unloading the assembly. It is possible, but there's no telling how much rework/redesign it would take unless anyone happens to be familiar with the inner workings and design of AutoCAD.</description>
      <pubDate>Mon, 15 Mar 2010 21:37:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404007#M72260</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-15T21:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: netload - is there a NET UNLOAD command?</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404008#M72261</link>
      <description>{quote}&lt;BR /&gt;
&lt;BR /&gt;
If Autodesk really wanted to, they could figure out a way to unload/reload &lt;BR /&gt;
assemblies&lt;BR /&gt;
&lt;BR /&gt;
{quote}&lt;BR /&gt;
&lt;BR /&gt;
No, they can't do that because it's not possible.&lt;BR /&gt;
&lt;BR /&gt;
{quote}&lt;BR /&gt;
&lt;BR /&gt;
For instance, you could either maintain a separate AppDomain for each add-on &lt;BR /&gt;
assembly....&lt;BR /&gt;
&lt;BR /&gt;
{quote}&lt;BR /&gt;
&lt;BR /&gt;
No, because you can't pass AutoCAD API objects across AppDomains. AppDomains are &lt;BR /&gt;
designed to not be process- or machine-dependent.&lt;BR /&gt;
&lt;BR /&gt;
IOW, .NET makes no distinction between two AppDomains that reside in the same &lt;BR /&gt;
process on a single machine, and two AppDomains that reside in two different &lt;BR /&gt;
processes, each running on two different computers located in different parts of &lt;BR /&gt;
the planet.&lt;BR /&gt;
&lt;BR /&gt;
Hence, to go across AppDomains you must use remoting, and few if any AutoCAD API &lt;BR /&gt;
objects are remotable.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD&lt;BR /&gt;
Supporting AutoCAD 2000 through 2010&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;JHOLZER&gt; wrote in message news:6355067@discussion.autodesk.com...&lt;BR /&gt;
However, it is possible to unload an AppDomain. If Autodesk really wanted to, &lt;BR /&gt;
they could figure out a way to unload/reload assemblies. For instance, you could &lt;BR /&gt;
either maintain a separate AppDomain for each add-on assembly, or if a single &lt;BR /&gt;
AppDomain was used, you could unload and reload it without a specific add-on &lt;BR /&gt;
assembly. Either way would have the effect of unloading the assembly. It is &lt;BR /&gt;
possible, but there's no telling how much rework/redesign it would take unless &lt;BR /&gt;
anyone happens to be familiar with the inner workings and design of AutoCAD.&lt;/JHOLZER&gt;</description>
      <pubDate>Mon, 15 Mar 2010 22:31:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/2404008#M72261</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-15T22:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: netload - is there a NET UNLOAD command?</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/7545278#M72262</link>
      <description>&lt;P&gt;Go look at the Package Contents file, and comment out the &amp;lt;components&amp;gt;&amp;lt;/components&amp;gt; part of the dll you wish not to have loaded when autocad starts up.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 08:43:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload-is-there-a-net-unload-command/m-p/7545278#M72262</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-15T08:43:50Z</dc:date>
    </item>
  </channel>
</rss>

