Skip to content

Commit 35f8c51

Browse files
authored
Merge pull request #200443 from meenasaravanan02/partition-key
Update service-fabric-reliable-services-communication-remoting.md
2 parents 1a3f314 + 07a8a48 commit 35f8c51

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

articles/service-fabric/service-fabric-reliable-services-communication-remoting.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Service remoting by using C# in Service Fabric
33
description: Service Fabric remoting allows clients and services to communicate with C# services by using a remote procedure call.
44
ms.topic: conceptual
5-
ms.date: 05/17/2022
5+
ms.date: 06/03/2022
66
ms.custom: devx-track-csharp
77
---
88
# Service remoting in C# with Reliable Services
@@ -64,6 +64,9 @@ class MyService : StatelessService, IMyService
6464
6565
## Call remote service methods
6666

67+
> [!NOTE]
68+
> If you are using more than one partition, the ServiceProxy.Create() must be provided the appropriate ServicePartitionKey. This is not needed for a one partition scenario.
69+
6770
Calling methods on a service by using the remoting stack is done by using a local proxy to the service through the `Microsoft.ServiceFabric.Services.Remoting.Client.ServiceProxy` class. The `ServiceProxy` method creates a local proxy by using the same interface that the service implements. With that proxy, you can call methods on the interface remotely.
6871

6972
```csharp

0 commit comments

Comments
 (0)