.
The CoSetProxyBlanket API is not safe for use from managed code directly, you must use the .NET marshalling APIs to access the right COM functions.
3/16/2007 8:08:01 AM - -80.3.32.5
TODO - a short description
3/16/2007 8:11:30 AM - -61.11.98.124
.
static extern int CoSetProxyBlanket([MarshalAs(UnmanagedType.IUnknown)]
.
Please look at http://msdn2.microsoft.com/en-us/library/aa302389.aspx#secnetch09_callingservicedcompaspnet, which shows how to call CoSetProxyBlanket in C#. As this is published on the MS Patterns and Practices web site I would assume this would be OK and is safe. This reference has code and discusses the issues about transition from .net object to COM IUnknown reference using the Marshal functions.
The CoSetProxyBlanket API is not safe for use from managed code directly, you must use the .NET marshalling APIs to access the right COM functions.
3/16/2007 8:08:01 AM - -80.3.32.5
Base interface that all other COM interfaces inherit from. Defines the standard reference counting and interface discovery mechanisms for COM objects.
12/23/2011 8:08:31 AM - PJonDevelopment (http---pjondevelopment.50webs.com)-189.25.187.30
.