ExpansionFunction.Arguments Property

Definition

Gets or sets the arguments to the function.

public:
 property cli::array <System::String ^> ^ Arguments { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
public:
 property Platform::Array <Platform::String ^> ^ Arguments { Platform::Array <Platform::String ^> ^ get(); void set(Platform::Array <Platform::String ^> ^ value); };
public string[] Arguments { get; set; }
member this.Arguments : string[] with get, set
Public Property Arguments As String()

Property Value

String[]

An array of arguments of the expansion function.

Remarks

Each argument represents another declaration in the code snippet file and can be either a literal or an object. The value for each argument is obtained in the GetFieldValue method that is in turned called by the GetArgument method. The GetArgument method can be called from your implementation of the GetCurrentValue method.

Applies to