AnnotationService.Disable Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Deshabilita el procesamiento de anotaciones y oculta todas las anotaciones visibles.
public:
void Disable();
public void Disable ();
member this.Disable : unit -> unit
Public Sub Disable ()
Ejemplos
En el ejemplo siguiente se muestra cómo usar el Disable método al detener .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
Comentarios
Cuando Disable se llama a todas las anotaciones se ocultan.
Se aplica a
Consulte también
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.