Class HostSetBuilderAccessor
Provides access to HostSetBuilder singleton
Inheritance
System.Object
HostSetBuilderAccessor
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Azos.Sky
Assembly: Azos.Sky.dll
Syntax
public static class HostSetBuilderAccessor
Methods
FindAndBuild<THostSet>(IApplication, String, String, Boolean, Boolean)
Shortcut to HostSetBuilder.FindAndBuild().... Tries to find a named host set starting at the requested cluster level. Throws if not found.
Declaration
public static THostSet FindAndBuild<THostSet>(this IApplication app, string setName, string clusterPath, bool searchParent = true, bool transcendNoc = false)
where THostSet : HostSet
Parameters
Type | Name | Description |
---|---|---|
IApplication | app | |
System.String | setName | |
System.String | clusterPath | |
System.Boolean | searchParent | |
System.Boolean | transcendNoc |
Returns
Type | Description |
---|---|
THostSet |
Type Parameters
Name | Description |
---|---|
THostSet |
GetHostSetBuilder(IApplication)
Provides access to HostSetBuilder singleton instance of the app context
Declaration
public static HostSetBuilder GetHostSetBuilder(this IApplication app)
Parameters
Type | Name | Description |
---|---|---|
IApplication | app |
Returns
Type | Description |
---|---|
HostSetBuilder |
TryFindAndBuild<THostSet>(IApplication, String, String, Boolean, Boolean)
Shortcut to HostSetBuilder.TryFindAndBuild().... Tries to find a named host set starting at the requested cluster level. Returns null if not found.
Declaration
public static THostSet TryFindAndBuild<THostSet>(this IApplication app, string setName, string clusterPath, bool searchParent = true, bool transcendNoc = false)
where THostSet : HostSet
Parameters
Type | Name | Description |
---|---|---|
IApplication | app | |
System.String | setName | |
System.String | clusterPath | |
System.Boolean | searchParent | |
System.Boolean | transcendNoc |
Returns
Type | Description |
---|---|
THostSet |
Type Parameters
Name | Description |
---|---|
THostSet |