Freigeben über


Marshal.ReleaseComObject-Methode: (Object)

 

Dekrementiert den Verweiszähler des dem angegebenen COM-Objekt zugeordneten Runtime Callable Wrapper (RCW).

Namespace:   System.Runtime.InteropServices
Assembly:  mscorlib (in mscorlib.dll)

Syntax

[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

Parameter

Rückgabewert

Type: System.Int32

Der neue Wert für den Verweiszähler des RCW, der o zugeordnet ist. Dieser Wert ist in der Regel 0, da der RCW unabhängig von der Anzahl der aufrufenden verwalteten Clients genau einen Verweis auf das umschlossene COM-Objekt beibehält.

Ausnahmen

Exception Condition
ArgumentException

o ist kein gültiges COM-Objekt.

NullReferenceException

o ist null.

Hinweise

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.

Sicherheit

SecurityCriticalAttribute

requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.

Versionsinformationen

Universelle Windows-Plattform
Verfügbar seit 8
.NET Framework
Verfügbar seit 1.1
Portierbare Klassenbibliothek
Unterstützt in: portierbare .NET-Plattformen
Windows Phone Silverlight
Verfügbar seit 8.0
Windows Phone
Verfügbar seit 8.1

Siehe auch

FinalReleaseComObject
NullReferenceException
Marshal-Klasse
System.Runtime.InteropServices-Namespace

Zurück zum Anfang