Skip to content

Commit 36fb609

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#117626
(AzureCXP) fixes MicrosoftDocs/azure-docs#117626 Updated line number 275 to 281. Corrected property names with upper case.
1 parent 1d6d76a commit 36fb609

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/active-directory-b2c/restful-technical-profile.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -272,13 +272,13 @@ The following example shows a C# class that returns an error message:
272272
```csharp
273273
public class ResponseContent
274274
{
275-
public string version { get; set; }
276-
public int status { get; set; }
277-
public string code { get; set; }
278-
public string userMessage { get; set; }
279-
public string developerMessage { get; set; }
280-
public string requestId { get; set; }
281-
public string moreInfo { get; set; }
275+
public string Version { get; set; }
276+
public int Status { get; set; }
277+
public string Code { get; set; }
278+
public string UserMessage { get; set; }
279+
public string DeveloperMessage { get; set; }
280+
public string RequestId { get; set; }
281+
public string MoreInfo { get; set; }
282282
}
283283
```
284284

0 commit comments

Comments
 (0)