ActivityArgumentHelper.RegisterAccessorsGenerator Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Registers with an activity type a function to generate a list of ArgumentAccessors.
public:
static void RegisterAccessorsGenerator(Type ^ activityType, Func<System::Activities::Activity ^, System::Collections::Generic::IEnumerable<System::Activities::Presentation::ArgumentAccessor ^> ^> ^ argumentAccessorsGenerator);
public static void RegisterAccessorsGenerator (Type activityType, Func<System.Activities.Activity,System.Collections.Generic.IEnumerable<System.Activities.Presentation.ArgumentAccessor>> argumentAccessorsGenerator);
static member RegisterAccessorsGenerator : Type * Func<System.Activities.Activity, seq<System.Activities.Presentation.ArgumentAccessor>> -> unit
Public Shared Sub RegisterAccessorsGenerator (activityType As Type, argumentAccessorsGenerator As Func(Of Activity, IEnumerable(Of ArgumentAccessor)))
Parameters
- activityType
- Type
The activity type.
- argumentAccessorsGenerator
- Func<Activity,IEnumerable<ArgumentAccessor>>
A function which takes in an activity instance (of type activityType) and returns a list of ArgumentAccessors.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.