Close() 공개 정적인 메소드

public static Close ( ) : void
리턴 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();
 }