@@ -72,6 +72,9 @@ static Library()
72
72
_mongocrypt_setopt_schema_map = new Lazy < Delegates . mongocrypt_setopt_schema_map > (
73
73
( ) => __loader . Value . GetFunction < Delegates . mongocrypt_setopt_schema_map > (
74
74
( "mongocrypt_setopt_schema_map" ) ) , true ) ;
75
+ _mongocrypt_setopt_enable_multiple_collinfo = new Lazy < Delegates . mongocrypt_setopt_enable_multiple_collinfo > (
76
+ ( ) => __loader . Value . GetFunction < Delegates . mongocrypt_setopt_enable_multiple_collinfo > (
77
+ ( "mongocrypt_setopt_enable_multiple_collinfo" ) ) , true ) ;
75
78
76
79
_mongocrypt_setopt_append_crypt_shared_lib_search_path = new Lazy < Delegates . mongocrypt_setopt_append_crypt_shared_lib_search_path > (
77
80
( ) => __loader . Value . GetFunction < Delegates . mongocrypt_setopt_append_crypt_shared_lib_search_path > ( ( "mongocrypt_setopt_append_crypt_shared_lib_search_path" ) ) , true ) ;
@@ -251,6 +254,7 @@ public static string Version
251
254
internal static Delegates . mongocrypt_setopt_crypto_hook_sign_rsaes_pkcs1_v1_5 mongocrypt_setopt_crypto_hook_sign_rsaes_pkcs1_v1_5 => _mongocrypt_setopt_crypto_hook_sign_rsaes_pkcs1_v1_5 . Value ;
252
255
internal static Delegates . mongocrypt_setopt_encrypted_field_config_map mongocrypt_setopt_encrypted_field_config_map => _mongocrypt_setopt_encrypted_field_config_map . Value ;
253
256
internal static Delegates . mongocrypt_setopt_schema_map mongocrypt_setopt_schema_map => _mongocrypt_setopt_schema_map . Value ;
257
+ internal static Delegates . mongocrypt_setopt_enable_multiple_collinfo mongocrypt_setopt_enable_multiple_collinfo => _mongocrypt_setopt_enable_multiple_collinfo . Value ;
254
258
255
259
internal static Delegates . mongocrypt_setopt_append_crypt_shared_lib_search_path mongocrypt_setopt_append_crypt_shared_lib_search_path => _mongocrypt_setopt_append_crypt_shared_lib_search_path . Value ;
256
260
internal static Delegates . mongocrypt_setopt_set_crypt_shared_lib_path_override mongocrypt_setopt_set_crypt_shared_lib_path_override => _mongocrypt_setopt_set_crypt_shared_lib_path_override . Value ;
@@ -334,6 +338,7 @@ public static string Version
334
338
private static readonly Lazy < Delegates . mongocrypt_setopt_crypto_hook_sign_rsaes_pkcs1_v1_5 > _mongocrypt_setopt_crypto_hook_sign_rsaes_pkcs1_v1_5 ;
335
339
private static readonly Lazy < Delegates . mongocrypt_setopt_encrypted_field_config_map > _mongocrypt_setopt_encrypted_field_config_map ;
336
340
private static readonly Lazy < Delegates . mongocrypt_setopt_schema_map > _mongocrypt_setopt_schema_map ;
341
+ private static readonly Lazy < Delegates . mongocrypt_setopt_enable_multiple_collinfo > _mongocrypt_setopt_enable_multiple_collinfo ;
337
342
338
343
private static readonly Lazy < Delegates . mongocrypt_setopt_append_crypt_shared_lib_search_path > _mongocrypt_setopt_append_crypt_shared_lib_search_path ;
339
344
private static readonly Lazy < Delegates . mongocrypt_setopt_set_crypt_shared_lib_path_override > _mongocrypt_setopt_set_crypt_shared_lib_path_override ;
@@ -520,6 +525,11 @@ public delegate bool mongocrypt_setopt_crypto_hook_sign_rsaes_pkcs1_v1_5(
520
525
[ return : MarshalAs ( UnmanagedType . I1 ) ]
521
526
public delegate bool mongocrypt_setopt_schema_map ( MongoCryptSafeHandle handle , BinarySafeHandle schema ) ;
522
527
/// <summary>
528
+ /// bool mongocrypt_setopt_enable_multiple_collinfo(mongocrypt_t *crypt);
529
+ /// </summary>
530
+ [ return : MarshalAs ( UnmanagedType . I1 ) ]
531
+ public delegate bool mongocrypt_setopt_enable_multiple_collinfo ( MongoCryptSafeHandle handle ) ;
532
+ /// <summary>
523
533
/// void mongocrypt_setopt_append_crypt_shared_lib_search_path(mongocrypt_t* crypt, const char* path);
524
534
/// </summary>
525
535
public delegate void mongocrypt_setopt_append_crypt_shared_lib_search_path ( MongoCryptSafeHandle handle , [ MarshalAs ( UnmanagedType . LPStr ) ] string path ) ;
0 commit comments