Class SeedRootContext
Inheritance
System.Object
SeedRootContext
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()
Assembly: Snowflake.Framework.dll
Syntax
public class SeedRootContext : ISeedRootContext
Constructors
SeedRootContext()
Declaration
Properties
Item[Guid]
Declaration
public ISeed this[Guid seedGuid] { get; }
Parameters
Type |
Name |
Description |
System.Guid |
seedGuid |
|
Property Value
Root
Declaration
public ISeed Root { get; }
Property Value
SeedCollectionGuid
Declaration
public Guid SeedCollectionGuid { get; }
Property Value
Type |
Description |
System.Guid |
|
Methods
Add(ISeed)
Declaration
public void Add(ISeed seed)
Parameters
Type |
Name |
Description |
ISeed |
seed |
|
Add(SeedContent, ISeed, String)
Declaration
public ISeed Add(SeedContent content, ISeed parent, string source)
Parameters
Returns
AddRange(IEnumerable<ISeed>)
Declaration
public void AddRange(IEnumerable<ISeed> seeds)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IEnumerable<ISeed> |
seeds |
|
AddRange(IEnumerable<(SeedContent value, ISeed parent)>, String)
Declaration
public IEnumerable<ISeed> AddRange(IEnumerable<(SeedContent value, ISeed parent)> seeds, string source)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IEnumerable<System.ValueTuple<SeedContent, ISeed>> |
seeds |
|
System.String |
source |
|
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<ISeed> |
|
CullSeedTree(ISeed)
Declaration
public void CullSeedTree(ISeed seed)
Parameters
Type |
Name |
Description |
ISeed |
seed |
|
GetAll()
Declaration
public IEnumerable<ISeed> GetAll()
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<ISeed> |
|
GetAllOfType(String)
Declaration
public IEnumerable<ISeed> GetAllOfType(string type)
Parameters
Type |
Name |
Description |
System.String |
type |
|
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<ISeed> |
|
GetChildren(ISeed)
Declaration
public IEnumerable<ISeed> GetChildren(ISeed seed)
Parameters
Type |
Name |
Description |
ISeed |
seed |
|
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<ISeed> |
|
GetDescendants(ISeed)
Declaration
public IEnumerable<ISeed> GetDescendants(ISeed seed)
Parameters
Type |
Name |
Description |
ISeed |
seed |
|
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<ISeed> |
|
GetRootSeeds()
Declaration
public IEnumerable<ISeed> GetRootSeeds()
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<ISeed> |
|
GetSiblings(ISeed)
Declaration
public IEnumerable<ISeed> GetSiblings(ISeed seed)
Parameters
Type |
Name |
Description |
ISeed |
seed |
|
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<ISeed> |
|
GetUnculled()
Declaration
public IEnumerable<ISeed> GetUnculled()
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<ISeed> |
|
Implements