diff options
author | Jan Kotas <jkotas@microsoft.com> | 2017-11-19 05:49:08 -0800 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2017-11-19 05:49:08 -0800 |
commit | afa95ac59db1f23c62972a86e3cae01e5a3466be (patch) | |
tree | 667be8e447e589c1db9717ce02a9516a8f6cddea /Documentation | |
parent | b9affb49f79ed8319923c2f5b07b4aeeb04efe36 (diff) | |
download | coreclr-afa95ac59db1f23c62972a86e3cae01e5a3466be.tar.gz coreclr-afa95ac59db1f23c62972a86e3cae01e5a3466be.tar.bz2 coreclr-afa95ac59db1f23c62972a86e3cae01e5a3466be.zip |
Delete SuppressUnmanagedCodeSecurity on QCalls
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/botr/mscorlib.md | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Documentation/botr/mscorlib.md b/Documentation/botr/mscorlib.md index 808612414a..d5fc85e5dd 100644 --- a/Documentation/botr/mscorlib.md +++ b/Documentation/botr/mscorlib.md @@ -82,10 +82,8 @@ Do not replicate the comments into your actual QCall implementation. This is for class Foo { - // All QCalls should have the following DllImport and - // SuppressUnmanagedCodeSecurity attributes + // All QCalls should have the following DllImport attribute [DllImport(JitHelpers.QCall, CharSet = CharSet.Unicode)] - [SuppressUnmanagedCodeSecurity] // QCalls should always be static extern. private static extern bool Bar(int flags, string inString, StringHandleOnStack retString); |