ActivityValidator Classe
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Attenzione
The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*
Derivativo di DependencyObjectValidator che è una classe di base per tutti i componenti del validator di attività.
public ref class ActivityValidator : System::Workflow::ComponentModel::Compiler::DependencyObjectValidator
public class ActivityValidator : System.Workflow.ComponentModel.Compiler.DependencyObjectValidator
[System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public class ActivityValidator : System.Workflow.ComponentModel.Compiler.DependencyObjectValidator
type ActivityValidator = class
inherit DependencyObjectValidator
[<System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")>]
type ActivityValidator = class
inherit DependencyObjectValidator
Public Class ActivityValidator
Inherits DependencyObjectValidator
- Ereditarietà
- Derivato
- Attributi
Esempio
Nell'esempio seguente viene illustrata una classe ActivityValidator usata per un'attività personalizzata. L'attività personalizzata è un'attività ConsoleWriteLineActivity
che dispone di una sola proprietà di dipendenza denominata Msg
di tipo String. Il validator assicura che la proprietà Msg
venga impostata. In caso contrario, il compilatore visualizza un errore quando il metodo Validate viene chiamato sull'oggetto ActivityValidator e la compilazione non riesce.
class ConsoleWriteLineActivityValidator : ActivityValidator
{
public override ValidationErrorCollection Validate(ValidationManager manager, object obj)
{
// Invoke the base class method implementation to
// perform default validation.
ValidationErrorCollection errors = base.Validate(manager, obj);
// Make sure there is an activity instance.
ConsoleWriteLineActivity crw = obj as ConsoleWriteLineActivity;
if (crw == null)
{
throw new InvalidOperationException();
}
// If the activity has no parent then this validation
// is occurring during the compilation of the activity
// and not during the hosting or creation of an
// activity instance.
if (crw.Parent == null)
{
// Can skip the rest of the validation because
// it deals with the hosting and the creation
// of the activity.
return errors;
}
// Msg is required. Add a validation error if there is no
// Msg specified or Msg is not bound to another property.
if (string.IsNullOrEmpty(crw.Msg) &&
crw.GetBinding(ConsoleWriteLineActivity.MsgProperty) == null)
{
errors.Add(new ValidationError("Msg is required", 100, false, "Msg"));
}
return errors;
}
}
Class ConsoleWriteLineActivityValidator
Inherits ActivityValidator
Public Overrides Function Validate( _
ByVal manager As System.Workflow.ComponentModel.Compiler.ValidationManager, _
ByVal obj As Object) As System.Workflow.ComponentModel.Compiler.ValidationErrorCollection
'Invoke the base class method implementation to
'perform default validation.
Dim errors As ValidationErrorCollection = MyBase.Validate(manager, obj)
'Make sure there is an activity instance.
Dim crw As ConsoleWriteLineActivity = CType(obj, ConsoleWriteLineActivity)
If crw Is Nothing Then
Throw New InvalidOperationException()
End If
'If the activity has no parent then this validation
'is occurring during the compilation of the activity
'and not during the hosting or creation of an
'activity instance.
If crw.Parent Is Nothing Then
'Can skip the rest of the validation because
'it deals with the hosting and the creation
'of the activity.
Return errors
End If
'Msg is required. Add a validation error if there is no
'Msg specified or Msg is not bound to another property.
If String.IsNullOrEmpty(crw.Msg) And _
crw.GetBinding(ConsoleWriteLineActivity.MsgProperty) Is Nothing Then
errors.Add(New ValidationError("Msg is required", 100, False, "Msg"))
End If
Return errors
End Function
End Class
Commenti
Nota
In questo materiale vengono descritti tipi e spazi dei nomi obsoleti. Per altre informazioni, vedere Deprecated Types in Windows Workflow Foundation 4.5 (Tipi deprecati in Windows Workflow Foundation 4.5).
Costruttori
ActivityValidator() |
Obsoleti.
Inizializza una nuova istanza della classe ActivityValidator. |
Metodi
Equals(Object) |
Obsoleti.
Determina se l'oggetto specificato è uguale all'oggetto corrente. (Ereditato da Object) |
GetFullPropertyName(ValidationManager) |
Obsoleti.
Metodo di supporto per estrarre il nome completo della proprietà. (Ereditato da Validator) |
GetHashCode() |
Obsoleti.
Funge da funzione hash predefinita. (Ereditato da Object) |
GetType() |
Obsoleti.
Ottiene l'oggetto Type dell'istanza corrente. (Ereditato da Object) |
MemberwiseClone() |
Obsoleti.
Crea una copia superficiale dell'oggetto Object corrente. (Ereditato da Object) |
ToString() |
Obsoleti.
Restituisce una stringa che rappresenta l'oggetto corrente. (Ereditato da Object) |
Validate(ValidationManager, Object) |
Obsoleti.
Verifica che l'attività specificata è valida. |
ValidateActivityChange(Activity, ActivityChangeAction) |
Obsoleti.
Quando se ne esegue l'override in una classe derivata, convalida una modifica in base a una classe Activity specificata, aggiunta o rimossa. Questa funzione viene chiamata durante l'applicazione di modifiche apportate al flusso di lavoro durante gli aggiornamenti dinamici. (Ereditato da Validator) |
ValidateProperties(ValidationManager, Object) |
Obsoleti.
Metodo di supporto per convalidare automaticamente le proprietà specifiche degli oggetti. (Ereditato da Validator) |
ValidateProperty(PropertyInfo, Object, Object, ValidationManager) |
Obsoleti.
Esegue la convalida di una proprietà, quindi restituisce una classe ValidationErrorCollection che contiene i risultati della convalida. (Ereditato da Validator) |