AnnotationService.Disable Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Désactive le traitement des annotations et masque toutes les annotations visibles.
public:
void Disable();
public void Disable ();
member this.Disable : unit -> unit
Public Sub Disable ()
Exemples
L’exemple suivant montre comment utiliser la Disable méthode lorsque vous arrêtez le AnnotationService.
// ------------------------ StopAnnotations ---------------------------
/// <summary>
/// Disables annotation processing and hides all annotations.</summary>
private void StopAnnotations()
{
// If the AnnotationStore is active, flush and close it.
if (_annotStore != null)
{
_annotStore.Flush();
_annotStream.Flush();
_annotStream.Close();
_annotStore = null;
}
// If the AnnotationService is active, shut it down.
if (_annotService != null)
{
if (_annotService.IsEnabled)
{
_annotService.Disable(); // Disable the AnnotationService.
_annotService = null;
}
}
}// end:StopAnnotations()
' ------------------------ StopAnnotations ---------------------------
''' <summary>
''' Disables annotation processing and hides all annotations.</summary>
Private Sub StopAnnotations()
' If the AnnotationStore is active, flush and close it.
If _annotStore IsNot Nothing Then
_annotStore.Flush()
_annotStream.Flush()
_annotStream.Close()
_annotStore = Nothing
End If
' If the AnnotationService is active, shut it down.
If _annotService IsNot Nothing Then
If _annotService.IsEnabled Then
_annotService.Disable() ' Disable the AnnotationService.
_annotService = Nothing
End If
End If
End Sub
Remarques
Quand Disable est appelé, toutes les annotations deviennent masquées.
S’applique à
Voir aussi
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.