diff --git a/ObservatoryFramework/ObservatoryFramework.xml b/ObservatoryFramework/ObservatoryFramework.xml index b9a810a..5d8abb0 100644 --- a/ObservatoryFramework/ObservatoryFramework.xml +++ b/ObservatoryFramework/ObservatoryFramework.xml @@ -479,5 +479,75 @@ + + + Shared application HttpClient object. Provided so that plugins can adhere to .NET recommended behaviour of a single HttpClient object per application. + + + + + Class permitting plugins to provide their UI, if any, to Observatory Core. + + + + + Type of UI used by plugin. + + + + + UI object used by plugins with UIType.Avalonia. + (Untested/not implemented) + + + + + Collection bound to DataGrid used byu plugins with UIType.Basic. + Objects in collection should be of a class defined within the plugin consisting of string properties.
Each object is a single row, and the property names are used as column headers.
+
+
+ + + Instantiate PluginUI of UIType.Basic. + + + Collection bound to DataGrid used byu plugins with UIType.Basic. + Objects in collection should be of a class defined within the plugin consisting of string properties.
Each object is a single row, and the property names are used as column headers.
+ +
+ + + Instantiate PluginUI of specified UIType. + (Untested/not implemented) + + UIType for plugin. + Avalonia control to place in plugin tab. + + + + Options for plugin UI types. + + + + + No UI. Tab will not be added to list. + + + + + Simple DataGrid, to which items can be added or removed. + + + + + AvaloniaUI control which is placed in plugin tab. + + + + + UI used by Observatory Core settings tab.
+ Not intended for use by plugins. +
+