예제 #1
0
        private void SetDriveQualifiedVariableValue(object value)
        {
            SessionStateProviderBase provider = GetSessionStateProvider(VariablePath);

            if (provider != null)
            {
                var path = new Path(VariablePath.GetUnqualifiedUserPath());
                provider.SetSessionStateItem(path, value, false);
            }
        }
예제 #2
0
 public IList Write(IList content)
 {
     _provider.SetSessionStateItem(_path, content, false);
     return(content);
 }