active-directory-dotnet-graphapi-console
active-directory-dotnet-graphapi-console copied to clipboard
Update setting an extension property
The sample takes a short cut that assumes that the extension property name comes from a property on the application. This won't always be accessible. We should show a different way to "build" the extension property name.
private string FormatExtensionPropertyName(string name)
{
return $"extension_{_managementAppClientId.Replace("-", "")}_{name}";
}