Hello,
I have a plugin of type IApiDefinition and I need to retrieve information about my Community "Site URL". Is there any in-process API or some other way to get it?
Thanks
Hello,
I have a plugin of type IApiDefinition and I need to retrieve information about my Community "Site URL". Is there any in-process API or some other way to get it?
Thanks
You could use
Apis.Get<ICoreUrls>().Home();
Exactly what I need. Thank you.