IBuiltInEvidence.cs 408 B

1234567891011121314151617181920
  1. //
  2. // System.Security.Policy.IBuiltInEvidence
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System;
  10. namespace System.Security.Policy
  11. {
  12. interface IBuiltInEvidence
  13. {
  14. int GetRequiredSize (bool verbose);
  15. int InitFromBuffer (char [] buffer, int position);
  16. int OutputToBuffer (char [] buffer, int position, bool verbose);
  17. }
  18. }