Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/sdks/uid2-sdk-ref-csharp-dotnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ var client = new BidstreamClient(UID2_BASE_URL, UID2_API_KEY, UID2_SECRET_KEY);
client.Refresh();
```

3. Decrypt a token into a raw UID2. Pass the domain name of the site where the bid originated from:
3. Decrypt a token into a raw UID2. Pass the token, and the domain name of the site where the bid originated from. The domain name must be all lower case, without spaces and without subdomain. For example, for `Subdomain.DOMAIN.com` , pass `domain.com` instead:

```cs
var decrypted = client.DecryptTokenIntoRawUid(uidToken, domain);
Expand Down