Method | Description | |
---|---|---|
FromSelectionString ( string selectionString, string delimiter = SettingsDelimiter ) : void |
Set values from a string representation of the settings.
|
|
ToSelectionString ( ) : string |
Gets a string representation of the settings.
|
|
ToString ( ) : string |
Returns a System.String that represents this instance.
|
Method | Description | |
---|---|---|
OnGetParameters ( ) : IEnumerable |
Gets an ordered set of property values that can be used to construct the settings string.
|
|
OnSetParameters ( int version, IReadOnlyList |
Set the property values parsed from a settings string.
|
public FromSelectionString ( string selectionString, string delimiter = SettingsDelimiter ) : void | ||
selectionString | string | A delimited string representing the settings. |
delimiter | string | The delimiter used to separate the setting values. |
return | void |
protected abstract OnGetParameters ( ) : IEnumerable |
||
return | IEnumerable |
protected abstract OnSetParameters ( int version, IReadOnlyList |
||
version | int | The version number of the parameter set. |
parameters | IReadOnlyList |
An ordered collection of strings representing the parameter values. |
return | void |