CorrelationAliasAttribute(String, String) Constructor
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.
Initializes a new instance of the CorrelationAliasAttribute with the name of the correlation that is being aliased and the path to where the value can be found.
public:
CorrelationAliasAttribute(System::String ^ name, System::String ^ path);
public CorrelationAliasAttribute (string name, string path);
new System.Workflow.Activities.CorrelationAliasAttribute : string * string -> System.Workflow.Activities.CorrelationAliasAttribute
Public Sub New (name As String, path As String)
Parameters
- name
- String
The name of the correlation parameter that is being aliased.
- path
- String
Indicates which argument in the method or event holds the value for the correlation parameter specified by name
. This parameter can use dot notation, for example, Parameter.Location
.
Remarks
The following table shows initial property values for an instance of the CorrelationAliasAttribute class.
Property | Value |
---|---|
Name | The value of name . |
Path | The value of path . |