Close() public static method

public static Close ( ) : void
return void
コード例 #1
0
        public static void Close()
        {
            // Do a full damand
            new SecurityPermission(SecurityPermissionFlag.UnmanagedCode).Demand();

            TraceInternal.Close();
        }
コード例 #2
0
        public static void Close()
        {
#if MONO_FEATURE_CAS
            // Do a full damand
            new SecurityPermission(SecurityPermissionFlag.UnmanagedCode).Demand();
 #endif
            TraceInternal.Close();
        }
コード例 #3
0
ファイル: Trace.cs プロジェクト: wujun4code/mono
        public static void Close()
        {
#if !DISABLE_CAS_USE
            // Do a full damand
            new SecurityPermission(SecurityPermissionFlag.UnmanagedCode).Demand();
 #endif
            TraceInternal.Close();
        }
コード例 #4
0
 public static void Close()
 {
     TraceInternal.Close();
 }