Compartilhar via


Método SafeHandle.SetHandleAsInvalid ()

 

Dica

The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience.

Marca um identificador como não mais usado.

Namespace:   System.Runtime.InteropServices
Assembly:  mscorlib (em mscorlib.dll)

Sintaxe

[SecurityCriticalAttribute]
public void SetHandleAsInvalid()
public:
[SecurityCriticalAttribute]
void SetHandleAsInvalid()
[<SecurityCriticalAttribute>]
member SetHandleAsInvalid : unit -> unit
<SecurityCriticalAttribute>
Public Sub SetHandleAsInvalid

Comentários

Chamar o SetHandleAsInvalid método somente quando souber que o identificador não faz referência a um recurso. Isso não altera o valor de handle campo; apenas marcará o identificador como fechado. O identificador, em seguida, pode conter um valor potencialmente obsoleto. O efeito dessa chamada é que é feita nenhuma tentativa para liberar os recursos.

Assim como acontece com o SetHandle método, use SetHandleAsInvalid somente se você precisar oferecer suporte a um identificador já existente.

Segurança

SecurityPermission

for permission to call unmanaged code. Security action: F:System.Security.Permissions.SecurityAction.LinkDemand. Associated enumeration: F:System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode

Informações de Versão

Plataforma Universal do Windows
Disponível desde 8
.NET Framework
Disponível desde 2.0
Biblioteca de Classes Portátil
Com suporte no: plataformas portáteis do .NET
Silverlight
Disponível desde 2.0
Windows Phone Silverlight
Disponível desde 7.0
Windows Phone
Disponível desde 8.1

Confira Também

Classe SafeHandle
Namespace System.Runtime.InteropServices

Retornar ao início