InfoConnect for Airlines
Parameters Property (InputMapAction)
Example 


Gets the parameters associated with this action. If there are no parameters,null is returned.
Syntax
'Declaration
 
<SuppressMessageAttribute(Category="Microsoft.Performance", 
   CheckId="CA1819:PropertiesShouldNotReturnArrays", 
   Scope="", 
   Target="", 
   MessageId="", 
   Justification="")>
Public ReadOnly Property Parameters As Object()
'Usage
 
Dim instance As InputMapAction
Dim value() As Object
 
value = instance.Parameters
[SuppressMessage(Category="Microsoft.Performance", 
   CheckId="CA1819:PropertiesShouldNotReturnArrays", 
   Scope="", 
   Target="", 
   MessageId="", 
   Justification="")]
public object[] Parameters {get;}
Example
InputMapAction inputMap;
object[] parameters; 
            
public void GetActionID()
{
   if(inputMap != null)
      parameters = inputMap.Parameters;
}
See Also