This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ExtensionOf(classStr(FormRun))] | |
| public final class FormRun_Class_Extension | |
| { | |
| /// <summary> | |
| /// This allows unencrypted setting of the recordContext via the q querystring parameter: | |
| /// q={"Parameters":[{"DataSource":"CustTable","FieldValues":[{"Field":"AccountNum","Value":"C123456789"}]}]} | |
| /// </summary> | |
| /// <param name = "_recordContext"></param> | |
| /// <returns></returns> | |
| public boolean applyRecordContext(str _recordContext) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Get-ParameterValues { | |
| <# | |
| .Synopsis | |
| Get the actual values of parameters which have manually set (non-null) default values or values passed in the call | |
| .Description | |
| Unlike $PSBoundParameters, the hashtable returned from Get-ParameterValues includes non-empty default parameter values. | |
| NOTE: Default values that are the same as the implied values are ignored (e.g.: empty strings, zero numbers, nulls). | |
| .Link | |
| https://gist.github.com/Jaykul/72f30dce2cca55e8cd73e97670db0b09/ | |
| .Link |