Skip to content

Commit 3882f97

Browse files
committed
COH-30829 Deprecate classes that are using BinaryFormatter (added BinaryPofSerializer)
[git-p4: depot-paths = "//dev/main.net/": change = 111207]
1 parent 1be9587 commit 3882f97

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/Coherence/IO/OptimizedBinarySerializer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Tangosol.IO
1818
/// <remarks>
1919
/// <para>
2020
/// As of 14.1.2.0, this class is deprecated as it relies on a
21-
/// deprecated <see cref="BinarySerializer"/>
21+
/// deprecated <see cref="BinaryFormatter"/>
2222
/// </para>
2323
/// </remarks>
2424
/// <author>Aleksandar Seovic 2010.03.17</author>

src/Coherence/IO/Pof/BinaryPofSerializer.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,15 @@ namespace Tangosol.IO.Pof
1515
/// <summary><see cref="IPofSerializer"/> implementation that supports
1616
/// the serialization and deserialization of any serializable .NET type.
1717
/// </summary>
18+
/// <remarks>
19+
/// <para>
20+
/// As of 14.1.2.0, this class is deprecated as it relies on a
21+
/// deprecated <see cref="BinaryFormatter"/>
22+
/// </para>
23+
/// </remarks>
1824
/// <author>Goran Milosavljevic 2007.08.23</author>
1925
/// <since>Coherence 3.4</since>
26+
[Obsolete("since Coherence 14.1.2.0")]
2027
public class BinaryPofSerializer : IPofSerializer
2128
{
2229
#region Constructors

0 commit comments

Comments
 (0)