Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 972 Bytes

File metadata and controls

24 lines (15 loc) · 972 Bytes

UIExtensionBase.WebServerBaseUrl property

Returns the base URL for the routes added by this extension in the internal Studio Pro web server.

protected Uri WebServerBaseUrl { get; }

Exceptions

exception condition
InvalidOperationException When trying to access this property in the constructor of the extensions.

Remarks

This property is not available until the extension has been fully constructed. If you need to access this property in the initialization of your extension, subscribe to the ExtensionLoaded event using Subscribe to execute code immediately once the extension is loaded.

See Also