Esempio n. 1
0
 public unsafe static SecurityStatus SafeQueryContextAttributes(
     ref SafeCtxtHandle context,
     out SecPkgContextStreamSizes streamSizes)
 {
     fixed(void *buffer = &streamSizes)
     return(SafeQueryContextAttributes(ref context, UlAttribute.SecpkgAttrStreamSizes, buffer));
 }
Esempio n. 2
0
 public unsafe static void QueryContextAttributes(
     ref SafeCtxtHandle context,
     out SecPkgContextStreamSizes streamSizes)
 {
     fixed(void *buffer = &streamSizes)
     QueryContextAttributes(ref context, UlAttribute.SecpkgAttrStreamSizes, buffer);
 }