This API supports the FIM 2010 infrastructure. Using this API
directly from your code is not supported.
Namespace:
Microsoft.ResourceManagement.Workflow.Activities
Assembly: Microsoft.ResourceManagement (in
microsoft.resourcemanagement.dll)
Usage
Visual Basic |
Dim instance As XmlInteractiveActivity
Dim handler As EventHandler(Of OperationValidationEventArgs)
AddHandler instance.CreateOperationValidation, handler
|
Syntax
Visual Basic |
<CategoryAttribute("Event Handlers")> _
<ValidationOptionAttribute(ValidationOption.None)> _
<BrowsableAttribute(True)> _
<DescriptionAttribute("An Event Handler for Validating the ResourceFactory WS-Transfer Create Operation. This event is triggered at the very beginning of the receive activity to perform the claims check. Should the parent activity wish to flag that operation validation failed, it should set the FaultMessage property to an appropriate Fault Exception.")> _
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)> _
Public Event CreateOperationValidation As EventHandler(Of OperationValidationEventArgs)
|
C# |
[CategoryAttribute("Event Handlers")]
[ValidationOptionAttribute(ValidationOption.None)]
[BrowsableAttribute(true)]
[DescriptionAttribute("An Event Handler for Validating the ResourceFactory WS-Transfer Create Operation. This event is triggered at the very beginning of the receive activity to perform the claims check. Should the parent activity wish to flag that operation validation failed, it should set the FaultMessage property to an appropriate Fault Exception.")]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)]
public event EventHandler<OperationValidationEventArgs> CreateOperationValidation
|
C++ |
[CategoryAttribute(L"Event Handlers")]
[ValidationOptionAttribute(ValidationOption::None)]
[BrowsableAttribute(true)]
[DescriptionAttribute(L"An Event Handler for Validating the ResourceFactory WS-Transfer Create Operation. This event is triggered at the very beginning of the receive activity to perform the claims check. Should the parent activity wish to flag that operation validation failed, it should set the FaultMessage property to an appropriate Fault Exception.")]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility::Visible)]
public:
event EventHandler<OperationValidationEventArgs^>^ CreateOperationValidation {
void add (EventHandler<OperationValidationEventArgs^>^ value);
void remove (EventHandler<OperationValidationEventArgs^>^ value);
}
|
J# |
/** @event */
public void add_CreateOperationValidation (EventHandler<OperationValidationEventArgs> value)
/** @event */
public void remove_CreateOperationValidation (EventHandler<OperationValidationEventArgs> value)
|
Platforms
Target Platforms
Windows 2008 x64 Edition
See Also