[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.remoting

Re: Why to use MarshalByRef

Allen Anderson

7/15/2004 9:15:00 PM

put simply, MBR objects are more what remoting was intended to
facilitate. You can use an object on a different machine without
actually having to go to run it on that machine. MBV objects are
execute on the client, which can otherwise be accomplished locally.


On Tue, 13 Jul 2004 06:23:02 -0700, Shrine
<Shrine@discussions.microsoft.com> wrote:

>Dear All,
>I am developing a .NET Remoting application. In my class, I am using
>
>Public Class ClassRemote
> Inherits MarshalByRef
>
>Can anyone please tell me, why I want to use MarshalByRef??