DecrementAssertCount() private method

private DecrementAssertCount ( ) : void
return void
 internal void RevertAssertAllPossible()
 {
     if (this.m_assertAllPossible)
     {
         this.m_assertAllPossible = false;
         FrameSecurityDescriptor.DecrementAssertCount();
     }
 }
 internal void RevertAssert()
 {
     if (this.m_assertions != null)
     {
         this.m_assertions = null;
         FrameSecurityDescriptor.DecrementAssertCount();
     }
     if (this.m_DeclarativeAssertions != null)
     {
         this.m_AssertFT = this.m_DeclarativeAssertions.IsUnrestricted();
         return;
     }
     this.m_AssertFT = false;
 }