File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,11 @@ You will need the publish and subscribe keys to authenticate your app. Get your
2121 ``` csharp
2222 using PubnubApi ;
2323
24- PNConfiguration pnConfiguration = new PNConfiguration ();
25- pnConfiguration .SubscribeKey = " mySubscribeKey" ;
26- pnConfiguration .PublishKey = " myPublishKey" ;
27- pnConfiguration .Uuid = " myUniqueUUID" ;
28-
29- Pubnub pubnub = new Pubnub (pnConfiguration );
24+
25+ PNConfiguration pnConfiguration = new PNConfiguration (new UserId (" myUniqueUserId" ));
26+ pnConfiguration .SubscribeKey = " mySubscribeKey" ;
27+ pnConfiguration .PublishKey = " myPublishKey" ;
28+ Pubnub pubnub = new Pubnub (pnConfiguration );
3029 ```
3130
3231 This is the minimum configuration you need to send and receive messages with PubNub .
You can’t perform that action at this time.
0 commit comments