Skip to content

Commit 57944ac

Browse files
Apply suggestions from PR review
1 parent 0e731d6 commit 57944ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/service-fabric/service-fabric-reliable-services-exception-serialization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.custom: devx-track-csharp
77
---
88
# Remoting Exception Serialization Overview
99
BinaryFormatter based serialization is not secure and Microsoft strongly recommends not to use BinaryFormatter for data processing. More details on the security implications can be found [here](https://docs.microsoft.com/dotnet/standard/serialization/binaryformatter-security-guide).
10-
Service Fabric had been using BinaryFormatter for serializing Exceptions. Starting ServiceFabric v9.0, [Data Contract based serialization](https://docs.microsoft.com/dotnet/api/system.runtime.serialization.datacontractserializer?view=net-6.0) for remoting exceptions is made available as an opt-in feature. It is strongly recommended to opt for DataContract remoting exception serializationby following the below mentioned steps.
10+
Service Fabric had been using BinaryFormatter for serializing Exceptions. Starting ServiceFabric v9.0, [Data Contract based serialization](https://docs.microsoft.com/dotnet/api/system.runtime.serialization.datacontractserializer?view=net-6.0) for remoting exceptions is made available as an opt-in feature. It is strongly recommended to opt for DataContract remoting exception serialization by following the below mentioned steps.
1111

1212
Support for BinaryFormatter based remoting exception serialization will be deprecated in the future.
1313

@@ -267,7 +267,7 @@ class CustomConvertorClient : Microsoft.ServiceFabric.Services.Remoting.V2.Clien
267267

268268
- `IExceptionConvertor` registration on the **Service** side.
269269

270-
To register convertors, `CreateServiceInstanceListeners` has to be overriden and list of `IExceptionConvertor` has to be passed while creating RemotingListener instance.
270+
To register convertors, `CreateServiceInstanceListeners` has to be overridden and list of `IExceptionConvertor` has to be passed while creating RemotingListener instance.
271271

272272
- *StatelessService*
273273
```csharp

0 commit comments

Comments
 (0)