pascalabcnet/VisualPascalABCNETLinux/MonoDebugging/Debugger/IMirror.cs

21 lines
509 B
C#
Raw Normal View History

2023-04-18 18:53:21 +03:00
using System;
namespace Mono.Debugger.Soft
{
/*
* A Mirror represents a runtime object in the remote virtual machine. Calling
* methods/properties of mirror objects potentially involves a remoting call,
* which
* has some overhead, and may also fail. Values of properties which are
* constant (like Type.Name) are cached locally, so only the first call is
* affected.
* FIXME: Thread safety in the api ?
*/
public interface IMirror
{
VirtualMachine VirtualMachine {
get;
}
}
}