예제 #1
0
 // This option is not supported on Linux, so it would most likely throw.
 internal static int GetSecInfoOption(ConnectionHandle ldapHandle, LdapOption option, SecurityPackageContextConnectionInformation outValue) => Interop.Ldap.ldap_get_option_secInfo(ldapHandle, option, outValue);
예제 #2
0
 // This option is not supported on Linux, so it would most likely throw.
 internal static unsafe int GetSecInfoOption(ConnectionHandle ldapHandle, LdapOption option, SecurityPackageContextConnectionInformation outValue)
 {
     fixed(void *outValuePtr = outValue)
     {
         return(Interop.Ldap.ldap_get_option_secInfo(ldapHandle, option, outValuePtr));
     }
 }
예제 #3
0
 public static extern int ldap_get_option_secInfo([In] ConnectionHandle ldapHandle, [In] LdapOption option, [In, Out] SecurityPackageContextConnectionInformation outValue);
예제 #4
0
파일: Wldap32.cs 프로젝트: nickchal/pash
		public static extern int ldap_get_option_secInfo(ConnectionHandle ldapHandle, LdapOption option, SecurityPackageContextConnectionInformation outValue);