Class StringFragmentCollection
Container for string fragments
Inheritance
Namespace: EPiServer.Core.Html.StringParsing
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class StringFragmentCollection : Collection<IStringFragment>
Constructors
StringFragmentCollection()
Initializes a new instance of the String
Declaration
public StringFragmentCollection()
StringFragmentCollection(IEnumerable<IStringFragment>)
Initializes a new instance of the String
Declaration
public StringFragmentCollection(IEnumerable<IStringFragment> stringFragments)
Parameters
Type | Name | Description |
---|---|---|
System. |
stringFragments | The string fragments. |
StringFragmentCollection(IList<IStringFragment>)
Initializes a new instance of the String
Declaration
public StringFragmentCollection(IList<IStringFragment> stringFragments)
Parameters
Type | Name | Description |
---|---|---|
System. |
stringFragments | The string fragments. |
Properties
IsReadOnly
Gets a value indicating whether this instance is read only.
Declaration
public bool IsReadOnly { get; }
Property Value
Type | Description |
---|---|
System. |
|
Methods
ClearItems()
Clears all string fragments from the collection.
Will raise theCleared
Declaration
protected override void ClearItems()
GetFilteredFragments()
Gets the string fragments for the current principal.
Declaration
public StringFragmentCollection GetFilteredFragments()
Returns
Type | Description |
---|---|
String |
A String |
Remarks
This applies filtering for visitor group settings but but not access rights or filtering on publishing status.
GetFilteredFragments(IPrincipal)
Gets the string fragments accessable for a given principal.
Declaration
public StringFragmentCollection GetFilteredFragments(IPrincipal principal)
Parameters
Type | Name | Description |
---|---|---|
System. |
principal | The principal. |
Returns
Type | Description |
---|---|
String |
A String |
InsertItem(Int32, IStringFragment)
Inserts the item.
Will call the event Adding
Declaration
protected override void InsertItem(int index, IStringFragment item)
Parameters
Type | Name | Description |
---|---|---|
System. |
index | The index. |
IString |
item | The item. |
RemoveItem(Int32)
Removes the string fragment at the provided position. Will raise the Removed
Declaration
protected override void RemoveItem(int index)
Parameters
Type | Name | Description |
---|---|---|
System. |
index | The index of the fragment to remove. |
SetItem(Int32, IStringFragment)
Sets the item.
Will call the event Changing
Declaration
protected override void SetItem(int index, IStringFragment item)
Parameters
Type | Name | Description |
---|---|---|
System. |
index | The index. |
IString |
item | The item. |
ToReadOnly()
Gets a read only version of the current collection.
Declaration
public virtual StringFragmentCollection ToReadOnly()
Returns
Type | Description |
---|---|
String |
A read-only version of this collection. |
Events
AddingFragment
Event which will be trigged before an fragment gets added.
Declaration
public event EventHandler<StringFragmentEventArgs> AddingFragment
Event Type
Type | Description |
---|---|
System. |
ChangingFragment
Event which will be trigged before an fragment gets changed.
Declaration
public event EventHandler<StringFragmentEventArgs> ChangingFragment
Event Type
Type | Description |
---|---|
System. |
ClearedFragments
Raised before all string fragments are cleared from the collection.
Declaration
public event EventHandler ClearedFragments
Event Type
Type | Description |
---|---|
System. |
RemovedFragment
Raised before a string fragment is removed from the collection
Declaration
public event EventHandler<StringFragmentEventArgs> RemovedFragment
Event Type
Type | Description |
---|---|
System. |