Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than ole32, prefix the name with the module name and a period.
Declare Function CoInitializeSecurity
pVoid As IntPtr, _
cAuthSvc As Integer, asAuthSvc() As SOLE_AUTHENTICATION_SERVICE, _
pReserved1 As IntPtr, dwAuthnLevel As Integer, dwImpLevel As Integer, _
pAuthList As IntPtr, dwCapabilities As Integer, pReserved3 As IntPtr) As Integer
You shouldn't call CoInitializeSecurity from managed code. That's because the CLR will almost always call CoInitialize upon startup before execution enters your main method, and CoInitialize will implicitly call CoInitializeSecurity if it hasn't already been called. Therefore, calling this from managed code will usually return RPC_E_TOO_LATE.
The workaround is to write an unmanaged "shim" that will call CoInitializeSecurity, then activate and call into managed code. You can do this via an export from a mixed-mode C++ DLL, by registering a managed component for use by COM, or by using the CLR hosting API.
I have been able to reliably call CoInitializeSecurity from within the Main method of a managed (C#) application. There are two caveats:
You cannot have any assembly level attributes which are defined in another assembly. This causes the Attribute object to be created, and hence a COM call.
You cannot instantiate any objects in the Main method that are defined in another assembly. This involves a COM call.
To get around the second caveat, simply move all your code (except the CoInitializeSecurity call) into another procedure and call that.
Thus:
static void Main()
{
CoInitializeSecurity(...);
// Do something that causes the other assembly to be loaded.
MyCOMObjectInAnotherAssembly myObject = new MyCOMObjectInAnotherAssembly();
// other code here...
}
becomes:
static void Main()
{
CoInitializeSecurity(...);
PerformOtherWork();
}
private static void PerformOtherWork()
{
// Do something that causes the other assembly to be loaded.
MyCOMObjectInAnotherAssembly myObject = new MyCOMObjectInAnotherAssembly();
// other code here...
}
To use CoInitializeSecurity from a Windows Form Application, remove the STAThread attribute from the Main function, then call :
Identifies an authentication service that a server is willing to use to communicate to a client.
3/16/2007 8:20:07 AM - anonymous
Registers security and sets the default security values for the process, but this can't be directly called from managed code.
3/19/2008 7:53:21 AM - RobertChipperfield-212.44.26.236
Registers security and sets the default security values for the process, but this can't be directly called from managed code.
11/17/2010 12:47:58 AM - -71.32.39.4
Registers security and sets the default security values for the process, but this can't be directly called from managed code.
11/17/2010 12:47:58 AM - -71.32.39.4
Registers security and sets the default security values for the process, but this can't be directly called from managed code.
3/19/2008 7:53:21 AM - RobertChipperfield-212.44.26.236
Registers security and sets the default security values for the process, but this can't be directly called from managed code.
3/19/2008 7:53:21 AM - RobertChipperfield-212.44.26.236
Registers security and sets the default security values for the process, but this can't be directly called from managed code.
3/19/2008 7:53:21 AM - RobertChipperfield-212.44.26.236
Registers security and sets the default security values for the process, but this can't be directly called from managed code.
3/19/2008 7:53:21 AM - RobertChipperfield-212.44.26.236
Registers security and sets the default security values for the process, but this can't be directly called from managed code.
3/19/2008 7:53:21 AM - RobertChipperfield-212.44.26.236
Registers security and sets the default security values for the process, but this can't be directly called from managed code.
3/19/2008 7:53:21 AM - RobertChipperfield-212.44.26.236
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).