/// <summary>
 /// Action <code>ActionGetPageName</code> that represents the Service Studio reference action
 ///  <code>GetPageName</code> <p> Description: Returns the name of the physical page that corresponds t
 /// o the current screen. It is usualy the same as the screen name, except when nameclashes occur.</p>
 /// </summary>
 public static void ActionGetPageName(HeContext heContext, out string outParamPageName)
 {
     RssExtensionHTTPRequestHandler.MssGetPageName(heContext, out outParamPageName);
 }
 /// <summary>
 /// Action <code>ActionGetURLMethod</code> that represents the Service Studio reference action
 ///  <code>GetURLMethod</code> <p> Description: Gets the request method (GET or POST) of the curren
 /// t requested URL.</p>
 /// </summary>
 public static void ActionGetURLMethod(HeContext heContext, out string outParamMethod)
 {
     RssExtensionHTTPRequestHandler.MssGetURLMethod(heContext, out outParamMethod);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Action <code>ActionRunJavaScript</code> that represents the Service Studio reference action
 ///  <code>RunJavaScript</code> <p> Description: </p>
 /// </summary>
 public static void ActionRunJavaScript(HeContext heContext, string inParamScript)
 {
     RssExtensionHTTPRequestHandler.MssRunJavaScript(heContext, inParamScript);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Action <code>ActionIsAjaxRequest</code> that represents the Service Studio reference action
 ///  <code>IsAjaxRequest</code> <p> Description: Returns true if this is running in an AJAX request. No
 /// t Implemented in Java.</p>
 /// </summary>
 public static void ActionIsAjaxRequest(HeContext heContext, out bool outParamIsAjaxRequest)
 {
     RssExtensionHTTPRequestHandler.MssIsAjaxRequest(heContext, out outParamIsAjaxRequest);
 }
Exemplo n.º 5
0
 /// <summary>
 /// Action <code>ActionSetCookie</code> that represents the Service Studio reference action
 ///  <code>SetCookie</code> <p> Description: Sets a cookie.</p>
 /// </summary>
 public static void ActionSetCookie(HeContext heContext, string inParamCookieName, string inParamCookieValue, int inParamCookieExpirationSpan, string inParamCookiePath, string inParamCookieDomain)
 {
     RssExtensionHTTPRequestHandler.MssSetCookie(heContext, inParamCookieName, inParamCookieValue, inParamCookieExpirationSpan, inParamCookiePath, inParamCookieDomain);
 }