ResourceExplorer Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ResourceExplorer() |
Initializes a new instance of the ResourceExplorer class. |
ResourceExplorer(ResourceExplorerOptions) |
Initializes a new instance of the ResourceExplorer class. |
ResourceExplorer(IEnumerable<ResourceProvider>) |
Obsolete.
Initializes a new instance of the ResourceExplorer class. |
ResourceExplorer(IEnumerable<ResourceProvider>, IEnumerable<IComponentDeclarativeTypes>) |
Obsolete.
Initializes a new instance of the ResourceExplorer class. |
ResourceExplorer()
Initializes a new instance of the ResourceExplorer class.
public ResourceExplorer ();
Public Sub New ()
Applies to
ResourceExplorer(ResourceExplorerOptions)
Initializes a new instance of the ResourceExplorer class.
public ResourceExplorer (Microsoft.Bot.Builder.Dialogs.Declarative.Resources.ResourceExplorerOptions options);
new Microsoft.Bot.Builder.Dialogs.Declarative.Resources.ResourceExplorer : Microsoft.Bot.Builder.Dialogs.Declarative.Resources.ResourceExplorerOptions -> Microsoft.Bot.Builder.Dialogs.Declarative.Resources.ResourceExplorer
Public Sub New (options As ResourceExplorerOptions)
Parameters
- options
- ResourceExplorerOptions
Configuration optiosn for ResourceExplorer.
Applies to
ResourceExplorer(IEnumerable<ResourceProvider>)
Caution
Use ResourceExplorer(ResourceExplorerOptions options)
instead.
Initializes a new instance of the ResourceExplorer class.
[System.Obsolete("Use `ResourceExplorer(ResourceExplorerOptions options)` instead.")]
public ResourceExplorer (System.Collections.Generic.IEnumerable<Microsoft.Bot.Builder.Dialogs.Declarative.Resources.ResourceProvider> providers);
[<System.Obsolete("Use `ResourceExplorer(ResourceExplorerOptions options)` instead.")>]
new Microsoft.Bot.Builder.Dialogs.Declarative.Resources.ResourceExplorer : seq<Microsoft.Bot.Builder.Dialogs.Declarative.Resources.ResourceProvider> -> Microsoft.Bot.Builder.Dialogs.Declarative.Resources.ResourceExplorer
Public Sub New (providers As IEnumerable(Of ResourceProvider))
Parameters
- providers
- IEnumerable<ResourceProvider>
The list of resource providers to initialize the current instance.
- Attributes
Applies to
ResourceExplorer(IEnumerable<ResourceProvider>, IEnumerable<IComponentDeclarativeTypes>)
Caution
Use ResourceExplorer(ResourceExplorerOptions options)
instead.
Initializes a new instance of the ResourceExplorer class.
[System.Obsolete("Use `ResourceExplorer(ResourceExplorerOptions options)` instead.")]
public ResourceExplorer (System.Collections.Generic.IEnumerable<Microsoft.Bot.Builder.Dialogs.Declarative.Resources.ResourceProvider> providers, System.Collections.Generic.IEnumerable<Microsoft.Bot.Builder.Dialogs.Declarative.IComponentDeclarativeTypes> declarativeTypes);
[<System.Obsolete("Use `ResourceExplorer(ResourceExplorerOptions options)` instead.")>]
new Microsoft.Bot.Builder.Dialogs.Declarative.Resources.ResourceExplorer : seq<Microsoft.Bot.Builder.Dialogs.Declarative.Resources.ResourceProvider> * seq<Microsoft.Bot.Builder.Dialogs.Declarative.IComponentDeclarativeTypes> -> Microsoft.Bot.Builder.Dialogs.Declarative.Resources.ResourceExplorer
Public Sub New (providers As IEnumerable(Of ResourceProvider), declarativeTypes As IEnumerable(Of IComponentDeclarativeTypes))
Parameters
- providers
- IEnumerable<ResourceProvider>
The list of resource providers to initialize the current instance.
- declarativeTypes
- IEnumerable<IComponentDeclarativeTypes>
A list of declarative types to use. Falls back to Components if set to null.
- Attributes