想用命名管道实现c#和c++进程间通信,在c#中使用时好像要用到SecurityAttributes类,请问包含它的名字空间是什么 
重载代码:    [DllImport("kernel32.dll", SetLastError = true)]    public static extern IntPtr CreateFile    (
        String lpFileName,                          // file name
        uint dwDesiredAccess,                       // access mode
        uint dwShareMode,                                  // share mode
        SecurityAttributes attr,                  // SD
        uint dwCreationDisposition,          // how to create
        uint dwFlagsAndAttributes,           // file attributes
        uint hTemplateFile                  // handle to template file
    );