Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. public interface ICertificateProviderInfo
  2. {
  3. /// <summary>
  4. /// Return a string describing the current configuration of the Certificate Provider. For instance, list
  5. /// the configured key size, hash algorithms, etc.
  6. /// </summary>
  7. string GetConfigurationString();
  8.  
  9. /// <summary>
  10. /// Show a configuration dialog that allows user to control options related to your Certificate Provider,
  11. /// for instance, the configured key size, hash algorithm, etc.
  12. /// </summary>
  13. /// <param name="hwndOwner">Owning Window Handle</param>
  14. void ShowConfigurationUI(IntPtr hwndOwner);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement