Exemplo n.º 1
0
 public static VarType Load <VarType>(string Key, VarType def)
 {
     return(ConvertHelper.Convert <VarType>(Items[Key], def));
 }
Exemplo n.º 2
0
 public static VarType Request <VarType>(string Key, VarType def)
 {
     return(ConvertHelper.Convert <VarType>(Request(Key), def));
 }
Exemplo n.º 3
0
 public VarType Load <VarType>(string Key, VarType def)
 {
     return(ConvertHelper.Convert <VarType>(_ViewState[Key], def));
 }