Marshal.GetUniqueObjectForIUnknown(IntPtr) Method     
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a unique Runtime Callable Wrapper (RCW) object for a given IUnknown interface.
public:
 static System::Object ^ GetUniqueObjectForIUnknown(IntPtr unknown);[System.Security.SecurityCritical]
public static object GetUniqueObjectForIUnknown(IntPtr unknown);[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public static object GetUniqueObjectForIUnknown(IntPtr unknown);public static object GetUniqueObjectForIUnknown(IntPtr unknown);[<System.Security.SecurityCritical>]
static member GetUniqueObjectForIUnknown : nativeint -> obj[<System.Runtime.Versioning.SupportedOSPlatform("windows")>]
static member GetUniqueObjectForIUnknown : nativeint -> objstatic member GetUniqueObjectForIUnknown : nativeint -> objPublic Shared Function GetUniqueObjectForIUnknown (unknown As IntPtr) As ObjectParameters
- unknown
- 
				
				IntPtr
nativeint 
A managed pointer to an IUnknown interface.
Returns
A unique RCW for the specified IUnknown interface.
- Attributes
Remarks
The GetUniqueObjectForIUnknown method ensures that you receive a unique RCW, because it does not match an IUnknown pointer to an existing object. Use this method when you have to create a unique RCW that is not impacted by other code that calls the ReleaseComObject method.