Beschreibung:
Entfernt eine zuvor per SetSessionProperty angelegte Variable im Unterzweig "cRM.Project.Session".
Parameter:
|
Parametername |
Typ |
Beschreibung |
|
Property |
String |
Name der Session-Variable. |
Beispiel VBScript:
Call cRM.CurrentProject.SetSessionProperty("EigeneSessionVariable", "Wert")
Call cRM.CurrentProject.GetSessionProperty("EigeneSessionVariable", "")
Call cRM.CurrentProject.RemoveSessionProperty("EigeneSessionVariable")
Beispiel C#-Script:
cRM.CurrentProject.SetSessionProperty("EigeneSessionVariable", "Wert");
cRM.CurrentProject.GetSessionProperty("EigeneSessionVariable", "");
cRM.CurrentProject.RemoveSessionProperty("EigeneSessionVariable");