Class TimeParserCollection
Represents a collection of TimeParser objects.
Inheritance
System.Object
System.Collections.ObjectModel.Collection<TimeParser>
TimeParserCollection
Implements
System.Collections.Generic.IList<TimeParser>
System.Collections.Generic.ICollection<TimeParser>
System.Collections.Generic.IReadOnlyList<TimeParser>
System.Collections.Generic.IReadOnlyCollection<TimeParser>
System.Collections.Generic.IEnumerable<TimeParser>
System.Collections.IList
System.Collections.ICollection
System.Collections.IEnumerable
Inherited Members
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.IList.get_Item(System.Int32)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.IList.set_Item(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.Add(System.Windows.Controls.TimeParser)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.Clear()
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.ClearItems()
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.Contains(System.Windows.Controls.TimeParser)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.CopyTo(System.Windows.Controls.TimeParser[], System.Int32)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.GetEnumerator()
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.IndexOf(System.Windows.Controls.TimeParser)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.Insert(System.Int32, System.Windows.Controls.TimeParser)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.InsertItem(System.Int32, System.Windows.Controls.TimeParser)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.Remove(System.Windows.Controls.TimeParser)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.RemoveAt(System.Int32)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.RemoveItem(System.Int32)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.SetItem(System.Int32, System.Windows.Controls.TimeParser)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.IEnumerable.GetEnumerator()
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.IList.Add(System.Object)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.IList.Contains(System.Object)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.IList.IndexOf(System.Object)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.IList.Remove(System.Object)
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.Count
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.Item[System.Int32]
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.Items
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.Generic.ICollection<System.Windows.Controls.TimeParser>.IsReadOnly
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.ICollection.IsSynchronized
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.ICollection.SyncRoot
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.IList.IsFixedSize
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.IList.IsReadOnly
System.Collections.ObjectModel.Collection<System.Windows.Controls.TimeParser>.System.Collections.IList.Item[System.Int32]
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: System.Windows.Controls
Assembly: OpenSilver.dll
Syntax
[NotImplemented]
public class TimeParserCollection : Collection<TimeParser>, IList<TimeParser>, ICollection<TimeParser>, IReadOnlyList<TimeParser>, IReadOnlyCollection<TimeParser>, IEnumerable<TimeParser>, IList, ICollection, IEnumerable
Constructors
| Improve this Doc View SourceTimeParserCollection()
Initializes a new instance of the TimeParserCollection class.
Declaration
[NotImplemented]
public TimeParserCollection()
TimeParserCollection(IEnumerable<TimeParser>)
Initializes a new instance of the TimeParserCollection class.
Declaration
[NotImplemented]
public TimeParserCollection(IEnumerable<TimeParser> parsers)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<TimeParser> | parsers | A sequence of TimeParser objects that will be copied into this collection. |
Methods
| Improve this Doc View SourceTryParse(String, CultureInfo, out Nullable<DateTime>)
Tries to parse a string to a DateTime.
Declaration
[NotImplemented]
public virtual bool TryParse(string text, CultureInfo culture, out DateTime? result)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | The text that should be parsed. |
System.Globalization.CultureInfo | culture | The culture being used. |
System.Nullable<System.DateTime> | result | The parsed DateTime. |
Returns
Type | Description |
---|---|
System.Boolean | True if the parse was successful, false if it was not. |
Implements
System.Collections.Generic.IList<T>
System.Collections.Generic.ICollection<T>
System.Collections.Generic.IReadOnlyList<T>
System.Collections.Generic.IReadOnlyCollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IList
System.Collections.ICollection
System.Collections.IEnumerable