Windows Security API

Welcome to the Windows Security API Reference

Explore the comprehensive set of classes, methods, and enumerations that enable developers to integrate Windows security features into their applications.

Table of Contents

Classes

Enumerations

Methods

Code Samples

// Example: Creating a SecureString
using System.Security;

SecureString securePwd = new SecureString();
foreach (char c in "P@ssw0rd") securePwd.AppendChar(c);
securePwd.MakeReadOnly();