You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, Thanks for you wonderfull tool. I used it very often...
Something that could be usefull for me it's to be able to delete/update principalobjectaccess.
Here some C# code to do the delete :
var entity = ...Get record from principalobjectaccess...
var revokeAccessRequest = new RevokeAccessRequest
{
Revokee = new EntityReference(entity.GetAttributeValue<string>("principaltypecode"), entity.GetAttributeValue<Guid>("principalid")),
Target = new EntityReference(entity.GetAttributeValue<string>("objecttypecode"), entity.GetAttributeValue<Guid>("objectid")),
};
serviceClient.Execute(revokeAccessRequest);
Regards
Sybaris
The text was updated successfully, but these errors were encountered:
Hi,
First, Thanks for you wonderfull tool. I used it very often...
Something that could be usefull for me it's to be able to delete/update principalobjectaccess.
Here some C# code to do the delete :
Regards
Sybaris
The text was updated successfully, but these errors were encountered: