Closed andriizhegurov-okta closed 3 years ago
The SDK doesn't allow XML responses
Example of working with an XML response:
var appMetadata = await client.Applications.AppSamlMetadataAsync(app.Id); var xmlString = appMetadata["_rawData"].ToString(); XmlDocument doc = new XmlDocument(); doc.LoadXml(xmlString); //..................
Issue \
Code
Current behavior
The SDK doesn't allow XML responses
Desired behavior
Additional Context
Example of working with an XML response: