Condividi tramite


CA2002: Non bloccare oggetti con identità debole

TypeName

DoNotLockOnObjectsWithWeakIdentity

CheckId

CA2002

Category

Microsoft.Reliability

Breaking Change

Non sostanziale

Causa

Un thread tenta di acquisire un blocco su un oggetto con identità debole.

Descrizione della regola

Un oggetto presenta un'identità debole quando è possibile accedere ad esso direttamente attraverso i confini dei domini applicazione. Un thread che tenta di acquisire un blocco su un oggetto con identità debole può essere bloccato da un secondo thread in un altro dominio applicazione con un blocco sullo stesso oggetto. I tipi riportati di seguito presentano identità debole e sono contrassegnati dalla regola:

Come correggere le violazioni

Per correggere una violazione di questa regola, utilizzare un oggetto di un tipo non contenuto nell'elenco riportato nella sezione Descrizione.

Esclusione di avvisi

Non escludere un avviso da questa regola.

Regole correlate

CA2213: I campi Disposable devono essere eliminati

Esempio

Nell'esempio riportato di seguito vengono illustrati alcuni blocchi di oggetti che violano la regola.

Imports System
Imports System.IO
Imports System.Reflection
Imports System.Threading

Namespace ReliabilityLibrary

   Class WeakIdentities

      Sub SyncLockOnWeakId1()

         SyncLock GetType(WeakIdentities)
         End SyncLock

      End Sub

      Sub SyncLockOnWeakId2() 

         Dim stream As New MemoryStream()
         SyncLock stream
         End SyncLock

      End Sub

      Sub SyncLockOnWeakId3() 

         SyncLock "string"
         End SyncLock

      End Sub

      Sub SyncLockOnWeakId4() 

         Dim member As MemberInfo = _
            Me.GetType().GetMember("SyncLockOnWeakId1")(0)
         SyncLock member
         End SyncLock

      End Sub

      Sub SyncLockOnWeakId5()

         Dim outOfMemory As New OutOfMemoryException()
         SyncLock outOfMemory
         End SyncLock

      End Sub

   End Class

End Namespace
using System;
using System.IO;
using System.Reflection;
using System.Threading;

namespace ReliabilityLibrary
{
   class WeakIdentities
   {
      void LockOnWeakId1()
      { 
         lock(typeof(WeakIdentities)) {}
      }

      void LockOnWeakId2() 
      {
         MemoryStream stream = new MemoryStream();
         lock(stream) {} 
      }

      void LockOnWeakId3() 
      { 
         lock("string") {} 
      }

      void LockOnWeakId4() 
      { 
         MemberInfo member = this.GetType().GetMember("LockOnWeakId1")[0];
         lock(member) {} 
      }
      void LockOnWeakId5()
      {
         OutOfMemoryException outOfMemory = new OutOfMemoryException();
         lock(outOfMemory) {}
      }
   }
}

Vedere anche

Riferimenti

Istruzione lock (Riferimenti per C#)

Istruzione SyncLock

Monitor

AppDomain