Método Marshal.ReleaseComObject (Object)
Disminuye el recuento de referencias del contenedor Runtime Callable Wrapper (RCW) asociado al objeto COM indicado.
Espacio de nombres: System.Runtime.InteropServices
Ensamblado: mscorlib (en mscorlib.dll)
Sintaxis
[SecurityCriticalAttribute]
public static int ReleaseComObject(
object o
)
public:
[SecurityCriticalAttribute]
static int ReleaseComObject(
Object^ o
)
[<SecurityCriticalAttribute>]
static member ReleaseComObject :
o:Object -> int
<SecurityCriticalAttribute>
Public Shared Function ReleaseComObject (
o As Object
) As Integer
Parámetros
o
Type: System.ObjectObjeto COM que se va a liberar.
Valor devuelto
Type: System.Int32
Nuevo valor del recuento de referencias del contenedor RCW asociado a o. Este valor suele ser cero ya que el RCW conserva una sola referencia al objeto COM incluido en el contenedor, independientemente del número de clientes administrados que lo llamen.
Excepciones
Exception | Condition |
---|---|
ArgumentException | o no es un objeto COM válido. |
NullReferenceException | El valor de o es null. |
Comentarios
This method is used to explicitly control the lifetime of a COM object used from managed code. You should use this method to free the underlying COM object that holds references to resources in a timely manner or when objects must be freed in a specific order.
Every time a COM interface pointer enters the common language runtime (CLR), it is wrapped in an RCW.
The RCW has a reference count that is incremented every time a COM interface pointer is mapped to it. The M:System.Runtime.InteropServices.Marshal.ReleaseComObject(System.Object) method decrements the reference count of an RCW. When the reference count reaches zero, the runtime releases all its references on the unmanaged COM object, and throws a T:System.NullReferenceException if you attempt to use the object further. If the same COM interface is passed more than one time from unmanaged to managed code, the reference count on the wrapper is incremented every time, and calling M:System.Runtime.InteropServices.Marshal.ReleaseComObject(System.Object) returns the number of remaining references.
This method enables you to force an RCW reference count release so that it occurs precisely when you want it to. However, improper use of M:System.Runtime.InteropServices.Marshal.ReleaseComObject(System.Object) may cause your application to fail, or may cause an access violation.
Consider a scenario in which managed code in an application domain is holding onto an RCW that represents a COM component. If you call the M:System.Runtime.InteropServices.Marshal.ReleaseComObject(System.Object) method on the RCW, the managed code will be unable to access the RCW and will raise an T:System.Runtime.InteropServices.InvalidComObjectException exception.
A more serious error may occur if a call to the RCW is executing when the RCW is released. In this case, there is a good chance that the thread making the call will cause an access violation. However, process memory may become corrupted, and the process may continue to run until it fails for reasons that are very difficult to debug.
This risk is compounded when the COM component that is being used is a singleton, for the following reason: The CLR activates COM components by calling the COM CoCreateInstancehttps://go.microsoft.com/fwlink/?LinkID=142894 function, which returns the same interface pointer every time it is called for singleton COM components. Thus, separate and independent pieces of managed code in an application domain can be using the same RCW for a singleton COM component, and if either one calls the M:System.Runtime.InteropServices.Marshal.ReleaseComObject(System.Object) method on the COM component, the other will be broken.
Therefore, use the M:System.Runtime.InteropServices.Marshal.ReleaseComObject(System.Object) only if it is absolutely required. If you want to call this method to ensure that a COM component is released at a determined time, consider using the M:System.Runtime.InteropServices.Marshal.FinalReleaseComObject(System.Object) method instead. M:System.Runtime.InteropServices.Marshal.FinalReleaseComObject(System.Object) will release the underlying COM component regardless of how many times it has re-entered the CLR. The internal reference count of the RCW is incremented by one every time the COM component re-enters the CLR. Therefore, you could call the M:System.Runtime.InteropServices.Marshal.ReleaseComObject(System.Object) method in a loop until the value returned is zero. This achieves the same result as the M:System.Runtime.InteropServices.Marshal.FinalReleaseComObject(System.Object) method.
Seguridad
requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
Información de versión
Plataforma universal de Windows
Disponible desde 8
.NET Framework
Disponible desde 1.1
Biblioteca de clases portable
Se admite en: plataformas portátiles de .NET
Windows Phone Silverlight
Disponible desde 8.0
Windows Phone
Disponible desde 8.1
Ver también
FinalReleaseComObject
NullReferenceException
Clase Marshal
Espacio de nombres System.Runtime.InteropServices
Volver al principio