File tree Expand file tree Collapse file tree 5 files changed +10
-0
lines changed Expand file tree Collapse file tree 5 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1111
1212namespace kate . shared
1313{
14+ [ Obsolete ( "Removed in v1.5" ) ]
1415 public delegate void DebugLogDelegate ( DebugListener instance ) ;
16+ [ Obsolete ( "Removed in v1.5" ) ]
1517 public class DebugListener
1618 {
1719 public pTraceListener Listener ;
@@ -61,6 +63,8 @@ public virtual bool AllowDebugBreak()
6163 return false ;
6264 }
6365 }
66+
67+ [ Obsolete ( "Removed in v1.5" ) ]
6468 public class pTraceListener : TraceListener
6569 {
6670 private DebugListener debugListener ;
Original file line number Diff line number Diff line change 66namespace kate . shared . Helpers
77{
88#if NET8_0_OR_GREATER == false
9+ [ Obsolete ( "Removed in v1.5" ) ]
910 public class DatabaseHelper
1011 {
1112 public delegate void ReadHandler ( SerializationReader reader ) ;
Original file line number Diff line number Diff line change 1010namespace kate . shared . Helpers
1111{
1212#if NET8_0_OR_GREATER == false
13+ [ Obsolete ( "Removed in v1.5" ) ]
1314 public class DynamicDeserializer
1415 {
1516 private static VersionConfigToNamespaceAssemblyObjectBinder versionBinder ;
Original file line number Diff line number Diff line change 1010namespace kate . shared . Helpers
1111{
1212#if NET8_0_OR_GREATER == false
13+ [ Obsolete ( "Removed in v1.5" ) ]
1314 public enum ObjectType : byte
1415 {
1516 nullType ,
@@ -36,6 +37,7 @@ public enum ObjectType : byte
3637
3738 /// <summary> SerializationWriter. Extends BinaryWriter to add additional data types,
3839 /// handle null strings and simplify use with ISerializable. </summary>
40+ [ Obsolete ( "Removed in v1.5" ) ]
3941 public class SerializationWriter : BinaryWriter
4042 {
4143 public SerializationWriter ( Stream s )
@@ -294,6 +296,7 @@ public void WriteUTF8(string str)
294296
295297 /// <summary> SerializationReader. Extends BinaryReader to add additional data types,
296298 /// handle null strings and simplify use with ISerializable. </summary>
299+ [ Obsolete ( "Removed in v1.5" ) ]
297300 public class SerializationReader : BinaryReader
298301 {
299302 public SerializationReader ( Stream s )
Original file line number Diff line number Diff line change 55namespace kate . shared . Helpers
66{
77#if NET8_0_OR_GREATER == false
8+ [ Obsolete ( "Removed in v1.5" ) ]
89 public interface bSerializable
910 {
1011 void ReadFromStream ( SerializationReader sr ) ;
You can’t perform that action at this time.
0 commit comments