| 
				                                 Aleksandra Grosset                				 
                					 
                     
                
                
                
                 Guest                 
                 
                
                
                                 
                                                                
         | 
        
                
                
                namespace TutorialOnlineToolbar
 {
     [ComVisible(false)]
     public class Storage : AddinExpress.IE.ADXIESharedMemory
     {
         public Storage(string pageName)
             : base(pageName)
         {
         }
  
         public Storage(string pageName, uint sizeInBytes)
             : base(pageName, sizeInBytes)
         {
         }
  
         public Storage(string pageName, uint maxValueSizeInBytes, uint valueCount)
             : base(pageName, maxValueSizeInBytes, valueCount)
         {
         }
  
     }
 }
 
 (...)
 
 
         public static Storage storage
         {
             get
             {
                 if(auth == null)
                 {
                     auth = new Storage("TOauthStorage", 8192, 4);
                 }
                 return auth;
             }
         }                 |   
                 
         | 
  
  
        | 
				                                 Sergey Grischenko                				 
                					 					 
                
                
                
                 Add-in Express team                 
                 
                
                
                                 
                                        Posts: 7233 
                                                        Joined: 2004-07-05 
                                                
         | 
        
                
                
                Hi Aleksandra Grosset, 
 
 Please try to reduce the size of the shared values. Do you get the same exception?                 |   
                 
         |