|
|
@@ -389,6 +389,10 @@ namespace ReactiveTests.Tests
|
|
|
public class MarshalByRefCell<T> : MarshalByRefObject
|
|
|
{
|
|
|
public T Value;
|
|
|
+ public override object InitializeLifetimeService()
|
|
|
+ {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
public class MarshalByRefAction : MarshalByRefObject
|
|
|
@@ -404,6 +408,10 @@ namespace ReactiveTests.Tests
|
|
|
{
|
|
|
_action();
|
|
|
}
|
|
|
+ public override object InitializeLifetimeService()
|
|
|
+ {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
#endif
|