Exemplo 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));
 }
Exemplo n.º 2
0
 public unsafe static void QueryContextAttributes(
     ref SafeCtxtHandle context,
     out SecPkgContextStreamSizes streamSizes)
 {
     fixed(void *buffer = &streamSizes)
     QueryContextAttributes(ref context, UlAttribute.SecpkgAttrStreamSizes, buffer);
 }