Changeset 932
- Timestamp:
- 5/1/2009 12:37:23 AM (4 years ago)
- Location:
- branches/eraser6/Manager
- Files:
-
- 3 edited
-
Logger.cs (modified) (2 diffs)
-
Manager.cs (modified) (2 diffs)
-
Manager.csproj (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/Manager/Logger.cs
r930 r932 189 189 190 190 #region ISerializable Members 191 p ublicLogSessionDictionary(SerializationInfo info, StreamingContext context)191 protected LogSessionDictionary(SerializationInfo info, StreamingContext context) 192 192 { 193 193 dictionary = (Dictionary<DateTime, LogEntryCollection>)info.GetValue("Dictionary", … … 195 195 } 196 196 197 public void GetObjectData(SerializationInfo info, StreamingContext context) 197 [SecurityPermission(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.SerializationFormatter)] 198 public virtual void GetObjectData(SerializationInfo info, StreamingContext context) 198 199 { 199 200 info.AddValue("Dictionary", dictionary); -
branches/eraser6/Manager/Manager.cs
r915 r932 23 23 using System.Collections.Generic; 24 24 using System.Text; 25 using System.Runtime.Serialization; 25 26 26 27 namespace Eraser.Manager … … 119 120 public class FatalException : Exception 120 121 { 122 public FatalException() 123 { 124 } 125 121 126 public FatalException(string message) 122 127 : base(message) 128 { 129 } 130 131 public FatalException(SerializationInfo info, StreamingContext context) 132 : base(info, context) 123 133 { 124 134 } -
branches/eraser6/Manager/Manager.csproj
r899 r932 3 3 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 4 4 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 5 <ProductVersion>9.0. 21022</ProductVersion>5 <ProductVersion>9.0.30729</ProductVersion> 6 6 <SchemaVersion>2.0</SchemaVersion> 7 7 <ProjectGuid>{C1AC3255-0939-499D-A69D-725E3DD4F574}</ProjectGuid>
Note: See TracChangeset
for help on using the changeset viewer.
