What is the major use of MarshalByRefObject?

后端 未结 4 963
野性不改
野性不改 2020-12-07 13:13

What\'s the purpose for MarshalByRefObject?

4条回答
  •  醉梦人生
    2020-12-07 13:38

    Any object outside the application domain of the caller application should be considered as Remote Object. A Remote Object that should be derived from MarshalByRefObject Class. Any object can be changed into a Remote Object by deriving it from MarshalByRefObject. Objects without inheriting from MarshalByRefObject are called Non-remotable Objects.

提交回复
热议问题