Dialog events added
This commit is contained in:
parent
a4360f6993
commit
46432bc61b
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
|
||||
Binary file not shown.
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
|
||||
Binary file not shown.
BIN
Events/bin/Debug/Common.dll
Normal file
BIN
Events/bin/Debug/Common.dll
Normal file
Binary file not shown.
BIN
Events/bin/Debug/Common.pdb
Normal file
BIN
Events/bin/Debug/Common.pdb
Normal file
Binary file not shown.
BIN
Events/bin/Debug/Events.dll
Normal file
BIN
Events/bin/Debug/Events.dll
Normal file
Binary file not shown.
BIN
Events/bin/Debug/Events.pdb
Normal file
BIN
Events/bin/Debug/Events.pdb
Normal file
Binary file not shown.
BIN
Events/bin/Debug/FluentNHibernate.dll
Normal file
BIN
Events/bin/Debug/FluentNHibernate.dll
Normal file
Binary file not shown.
BIN
Events/bin/Debug/FluentNHibernate.pdb
Normal file
BIN
Events/bin/Debug/FluentNHibernate.pdb
Normal file
Binary file not shown.
5850
Events/bin/Debug/FluentNHibernate.xml
Normal file
5850
Events/bin/Debug/FluentNHibernate.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Events/bin/Debug/Iesi.Collections.dll
Normal file
BIN
Events/bin/Debug/Iesi.Collections.dll
Normal file
Binary file not shown.
541
Events/bin/Debug/Iesi.Collections.xml
Normal file
541
Events/bin/Debug/Iesi.Collections.xml
Normal file
@ -0,0 +1,541 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Iesi.Collections</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Iesi.Collections.Generic.LinkedHashSet`1">
|
||||
<summary>
|
||||
Implementation of ISet that also maintains a linked list over all elements.
|
||||
Enumeration of this set is guaranteed to return the elements in the order
|
||||
they were added.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through the collection.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
|
||||
</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.System#Collections#IEnumerable#GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through a collection.
|
||||
</summary>
|
||||
<returns>
|
||||
An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
|
||||
</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
|
||||
<summary>
|
||||
Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.Clear">
|
||||
<summary>
|
||||
Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.Contains(`0)">
|
||||
<summary>
|
||||
Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
|
||||
</summary>
|
||||
<returns>
|
||||
true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.CopyTo(`0[],System.Int32)">
|
||||
<summary>
|
||||
Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
|
||||
</summary>
|
||||
<param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param><param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param><exception cref="T:System.ArgumentNullException"><paramref name="array"/> is null.</exception><exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex"/> is less than 0.</exception><exception cref="T:System.ArgumentException"><paramref name="array"/> is multidimensional.-or-The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1"/> is greater than the available space from <paramref name="arrayIndex"/> to the end of the destination <paramref name="array"/>.-or-Type <paramref name="T"/> cannot be cast automatically to the type of the destination <paramref name="array"/>.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.Remove(`0)">
|
||||
<summary>
|
||||
Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</returns>
|
||||
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains all elements that are present in either the current set or the specified collection.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains only elements that are also in a specified collection.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Removes all elements in the specified collection from the current set.
|
||||
</summary>
|
||||
<param name="other">The collection of items to remove from the set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether a set is a subset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a subset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a superset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a superset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a correct superset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the <see cref="T:System.Collections.Generic.ISet`1"/> object is a correct superset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set. </param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a proper (strict) subset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a correct subset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set overlaps with the specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set and <paramref name="other"/> share at least one common element; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set and the specified collection contain the same elements.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is equal to <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.Add(`0)">
|
||||
<summary>
|
||||
Adds an element to the current set and returns a value to indicate if the element was successfully added.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the element is added to the set; false if the element is already in the set.
|
||||
</returns>
|
||||
<param name="item">The element to add to the set.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.CountOthers(System.Collections.Generic.IEnumerable{`0},System.Int32@)">
|
||||
<summary>
|
||||
Count the elements in the given collection and determine both the total
|
||||
count and how many of the elements that are present in the current set.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.AsSet(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Cast the given collection to an ISet<T> if possible. If not,
|
||||
return a new set containing the items.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.Unlink(Iesi.Collections.Generic.LinkedHashSet{`0}.LinkedHashNode{`0})">
|
||||
<summary>
|
||||
Unlink a node from the linked list by updating the node pointers in
|
||||
its preceeding and subsequent node. Also update the _first and _last
|
||||
pointers if necessary.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Iesi.Collections.Generic.LinkedHashSet`1.Count">
|
||||
<summary>
|
||||
Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Iesi.Collections.Generic.LinkedHashSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
|
||||
<summary>
|
||||
Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only; otherwise, false.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Iesi.Collections.Generic.ReadOnlySet`1">
|
||||
<summary>
|
||||
<p>Implements a read-only <c>Set</c> wrapper.</p>
|
||||
<p>Although this is advertised as immutable, it really isn't. Anyone with access to the
|
||||
wrapped set can still change the set.</p>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.#ctor(System.Collections.Generic.ISet{`0})">
|
||||
<summary>
|
||||
Constructs an immutable (read-only) <c>Set</c> wrapper.
|
||||
</summary>
|
||||
<param name="basisSet">The <c>Set</c> that is wrapped.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#IEnumerable#GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through a collection.
|
||||
</summary>
|
||||
<returns>
|
||||
An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
|
||||
</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through the collection.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
|
||||
</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
|
||||
<summary>
|
||||
Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ICollection{T}#Clear">
|
||||
<summary>
|
||||
Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.Contains(`0)">
|
||||
<summary>
|
||||
Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
|
||||
</summary>
|
||||
<returns>
|
||||
true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.CopyTo(`0[],System.Int32)">
|
||||
<summary>
|
||||
Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
|
||||
</summary>
|
||||
<param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param><param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param><exception cref="T:System.ArgumentNullException"><paramref name="array"/> is null.</exception><exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex"/> is less than 0.</exception><exception cref="T:System.ArgumentException"><paramref name="array"/> is multidimensional.-or-The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1"/> is greater than the available space from <paramref name="arrayIndex"/> to the end of the destination <paramref name="array"/>.-or-Type <paramref name="T"/> cannot be cast automatically to the type of the destination <paramref name="array"/>.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ICollection{T}#Remove(`0)">
|
||||
<summary>
|
||||
Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</returns>
|
||||
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ISet{T}#Add(`0)">
|
||||
<summary>
|
||||
Adds an element to the current set and returns a value to indicate if the element was successfully added.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the element is added to the set; false if the element is already in the set.
|
||||
</returns>
|
||||
<param name="item">The element to add to the set.</param>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ISet{T}#UnionWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains all elements that are present in both the current set and in the specified collection.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ISet{T}#IntersectWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains only elements that are also in a specified collection.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ISet{T}#ExceptWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Removes all elements in the specified collection from the current set.
|
||||
</summary>
|
||||
<param name="other">The collection of items to remove from the set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ISet{T}#SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether a set is a subset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a subset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a superset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a superset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a correct superset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the <see cref="T:System.Collections.Generic.ISet`1"/> object is a correct superset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set. </param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a property (strict) subset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a correct subset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set overlaps with the specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set and <paramref name="other"/> share at least one common element; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set and the specified collection contain the same elements.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is equal to <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="P:Iesi.Collections.Generic.ReadOnlySet`1.Count">
|
||||
<summary>
|
||||
Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Iesi.Collections.Generic.ReadOnlySet`1.IsReadOnly">
|
||||
<summary>
|
||||
Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
|
||||
</summary>
|
||||
<returns>
|
||||
True.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Iesi.Collections.Generic.SynchronizedSet`1">
|
||||
<summary>
|
||||
<p>Implements a thread-safe <c>Set</c> wrapper. The implementation is extremely conservative,
|
||||
serializing critical sections to prevent possible deadlocks, and locking on everything.
|
||||
The one exception is for enumeration, which is inherently not thread-safe. For this, you
|
||||
have to <c>lock</c> the <c>SyncRoot</c> object for the duration of the enumeration.</p>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.#ctor(System.Collections.Generic.ISet{`0})">
|
||||
<summary>
|
||||
Constructs a thread-safe <c>ISet</c> wrapper.
|
||||
</summary>
|
||||
<param name="basisSet">The <c>Set</c> object that this object will wrap.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
|
||||
<summary>
|
||||
Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.Clear">
|
||||
<summary>
|
||||
Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.Contains(`0)">
|
||||
<summary>
|
||||
Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
|
||||
</summary>
|
||||
<returns>
|
||||
true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.CopyTo(`0[],System.Int32)">
|
||||
<summary>
|
||||
Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
|
||||
</summary>
|
||||
<param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param><param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param><exception cref="T:System.ArgumentNullException"><paramref name="array"/> is null.</exception><exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex"/> is less than 0.</exception><exception cref="T:System.ArgumentException"><paramref name="array"/> is multidimensional.-or-The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1"/> is greater than the available space from <paramref name="arrayIndex"/> to the end of the destination <paramref name="array"/>.-or-Type <paramref name="T"/> cannot be cast automatically to the type of the destination <paramref name="array"/>.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.Remove(`0)">
|
||||
<summary>
|
||||
Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</returns>
|
||||
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains all elements that are present in either the current set or in the specified collection.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains only elements that are also in a specified collection.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Removes all elements in the specified collection from the current set.
|
||||
</summary>
|
||||
<param name="other">The collection of items to remove from the set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether a set is a subset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a subset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a superset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a superset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a correct superset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the <see cref="T:System.Collections.Generic.ISet`1"/> object is a correct superset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set. </param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a property (strict) subset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a correct subset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set overlaps with the specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set and <paramref name="other"/> share at least one common element; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set and the specified collection contain the same elements.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is equal to <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.Add(`0)">
|
||||
<summary>
|
||||
Adds an element to the current set and returns a value to indicate if the element was successfully added.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the element is added to the set; false if the element is already in the set.
|
||||
</returns>
|
||||
<param name="item">The element to add to the set.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.System#Collections#IEnumerable#GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through a collection. Enumeration is inherently not
|
||||
thread-safe. Use a <c>lock</c> on the <c>SyncRoot</c> to synchronize the entire enumeration process.
|
||||
</summary>
|
||||
<returns>
|
||||
An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
|
||||
</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through the collection. Enumeration is inherently not
|
||||
thread-safe. Use a <c>lock</c> on the <c>SyncRoot</c> to synchronize the entire enumeration process.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
|
||||
</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:Iesi.Collections.Generic.SynchronizedSet`1.Count">
|
||||
<summary>
|
||||
Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Iesi.Collections.Generic.SynchronizedSet`1.IsReadOnly">
|
||||
<summary>
|
||||
Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only; otherwise, false.
|
||||
</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
Events/bin/Debug/MySql.Data.dll
Normal file
BIN
Events/bin/Debug/MySql.Data.dll
Normal file
Binary file not shown.
BIN
Events/bin/Debug/NHibernate.dll
Normal file
BIN
Events/bin/Debug/NHibernate.dll
Normal file
Binary file not shown.
43816
Events/bin/Debug/NHibernate.xml
Normal file
43816
Events/bin/Debug/NHibernate.xml
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
|
||||
BIN
Events/obj/Debug/Events.csproj.AssemblyReference.cache
Normal file
BIN
Events/obj/Debug/Events.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
1
Events/obj/Debug/Events.csproj.CoreCompileInputs.cache
Normal file
1
Events/obj/Debug/Events.csproj.CoreCompileInputs.cache
Normal file
@ -0,0 +1 @@
|
||||
e4ab36b7b0030299e8d3f9c15f8edfab217c00c33b5d908f61099287ac9a64d6
|
||||
17
Events/obj/Debug/Events.csproj.FileListAbsolute.txt
Normal file
17
Events/obj/Debug/Events.csproj.FileListAbsolute.txt
Normal file
@ -0,0 +1,17 @@
|
||||
C:\Users\micha\git\tbf\Events\bin\Debug\Events.dll
|
||||
C:\Users\micha\git\tbf\Events\bin\Debug\Events.pdb
|
||||
C:\Users\micha\git\tbf\Events\bin\Debug\Common.dll
|
||||
C:\Users\micha\git\tbf\Events\bin\Debug\FluentNHibernate.dll
|
||||
C:\Users\micha\git\tbf\Events\bin\Debug\Iesi.Collections.dll
|
||||
C:\Users\micha\git\tbf\Events\bin\Debug\MySql.Data.dll
|
||||
C:\Users\micha\git\tbf\Events\bin\Debug\NHibernate.dll
|
||||
C:\Users\micha\git\tbf\Events\bin\Debug\Common.pdb
|
||||
C:\Users\micha\git\tbf\Events\bin\Debug\FluentNHibernate.pdb
|
||||
C:\Users\micha\git\tbf\Events\bin\Debug\FluentNHibernate.xml
|
||||
C:\Users\micha\git\tbf\Events\bin\Debug\Iesi.Collections.xml
|
||||
C:\Users\micha\git\tbf\Events\bin\Debug\NHibernate.xml
|
||||
C:\Users\micha\git\tbf\Events\obj\Debug\Events.csproj.AssemblyReference.cache
|
||||
C:\Users\micha\git\tbf\Events\obj\Debug\Events.csproj.CoreCompileInputs.cache
|
||||
C:\Users\micha\git\tbf\Events\obj\Debug\Events.csproj.Up2Date
|
||||
C:\Users\micha\git\tbf\Events\obj\Debug\Events.dll
|
||||
C:\Users\micha\git\tbf\Events\obj\Debug\Events.pdb
|
||||
0
Events/obj/Debug/Events.csproj.Up2Date
Normal file
0
Events/obj/Debug/Events.csproj.Up2Date
Normal file
BIN
Events/obj/Debug/Events.dll
Normal file
BIN
Events/obj/Debug/Events.dll
Normal file
Binary file not shown.
BIN
Events/obj/Debug/Events.pdb
Normal file
BIN
Events/obj/Debug/Events.pdb
Normal file
Binary file not shown.
38
TBF.sln.DotSettings.user
Normal file
38
TBF.sln.DotSettings.user
Normal file
@ -0,0 +1,38 @@
|
||||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||
<s:Boolean x:Key="/Default/Environment/UnitTesting/CreateUnitTestDialog/ShowAdvancedOptions/@EntryValue">True</s:Boolean>
|
||||
<s:String x:Key="/Default/Environment/UnitTesting/CreateUnitTestDialog/TestProjectMapping/=743DF7DB_002DC7B6_002D42EB_002D986D_002D0F485E5588E4/@EntryIndexedValue">77EB589F-C670-4489-AAD6-2A3C02061FD1</s:String>
|
||||
<s:String x:Key="/Default/Environment/UnitTesting/CreateUnitTestDialog/TestProjectMapping/=8648FD92_002DCDA1_002D4C3A_002DB5F9_002DFE547CE1FA48/@EntryIndexedValue">77EB589F-C670-4489-AAD6-2A3C02061FD1</s:String>
|
||||
<s:String x:Key="/Default/Environment/UnitTesting/CreateUnitTestDialog/TestTemplateMapping/=MSTest/@EntryIndexedValue">d6790ab7-33c2-4425-b2c9-51480cd1a852</s:String>
|
||||
<s:String x:Key="/Default/Environment/UnitTesting/UnitTestSessionStore/Sessions/=311ca613_002Da634_002D4e0f_002Db9fb_002D4b7af9b7abb2/@EntryIndexedValue"><SessionState ContinuousTestingMode="0" Name="GetCorrection" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session">
|
||||
<TestAncestor>
|
||||
<TestId>MSTest::77EB589F-C670-4489-AAD6-2A3C02061FD1::.NETFramework,Version=v4.7.2::TBFTests.Entities.MeasurementCorrectionTest.GetCorrection</TestId>
|
||||
<TestId>MSTest::77EB589F-C670-4489-AAD6-2A3C02061FD1::.NETFramework,Version=v4.7.2::TBFTests.Rig.Modbus.Meret.AdjustableScale.AdjustableMeterTest.GetCorrection</TestId>
|
||||
<TestId>MSTest::77EB589F-C670-4489-AAD6-2A3C02061FD1::.NETFramework,Version=v4.7.2::TBFTests.Rig.Network.Camera.KeyenceIV3G120.CameraTest.RtpListener</TestId>
|
||||
<TestId>MSTest::77EB589F-C670-4489-AAD6-2A3C02061FD1::.NETFramework,Version=v4.7.2::TBFTests.Rig.Network.Camera.KeyenceIV3G120.CameraTest.Initialize</TestId>
|
||||
</TestAncestor>
|
||||
</SessionState></s:String>
|
||||
|
||||
<s:String x:Key="/Default/Environment/UnitTesting/UnitTestSessionStore/Sessions/=fee81c72_002D0b13_002D439c_002D8921_002D12878bb8cd86/@EntryIndexedValue"><SessionState ContinuousTestingMode="0" IsActive="True" Name="Initialize" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session">
|
||||
<TestAncestor>
|
||||
<TestId>MSTest::77EB589F-C670-4489-AAD6-2A3C02061FD1::.NETFramework,Version=v4.7.2::TBFTests.Rig.Network.Camera.KeyenceIV3G120.CameraTest.Initialize</TestId>
|
||||
</TestAncestor>
|
||||
</SessionState></s:String>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=Config_002FResources_002FStrings/@EntryIndexedValue">False</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=DeviceTest_002FDeviceTestDlg/@EntryIndexedValue">False</s:Boolean>
|
||||
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=Miscellaneous_0020Files_002FWyqupug/@EntryIndexedValue">False</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FResources_002FStrings/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FRig_002FDataEntry_002FStandartCameraPurchaseOrder_002FCycleBeginningForm/@EntryIndexedValue">False</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FRig_002FDataEntry_002FStandartCameraPurchaseOrder_002FCycleEndForm/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FRig_002FDataEntry_002FStandartCameraPurchaseOrder_002FTestStartEndForm/@EntryIndexedValue">False</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FRig_002FNetwork_002FAdapterFTP_002FNetadapterCfgCtrl/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FRig_002FNetwork_002FCamera_002FKeyenceIV3G120_002FCameraCfgCtrl/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FRig_002FNetwork_002FCamera_002FRoiForFixedStartKeyence_002FRoiCfgCtrl/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FRig_002FOutput_002FPrinters_002FGroupPrinting_002FSingle_002FPrinterCfgCtrl/@EntryIndexedValue">False</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FRig_002FOutput_002FPrinters_002FGroupPrinting_002FSingle_002FPrinterTestBenchComponentSelectorDlg/@EntryIndexedValue">True</s:Boolean>
|
||||
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FRig_002FRegisterReaders_002FFrequencyMeterFromUniCB_002FRRCfgCtrl/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FUI_002FBench_002FComponents_002FComponentsManagerDlg/@EntryIndexedValue">False</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FUI_002FBench_002FMetrology_002FMetrologyDlgAdjustableScaleTab/@EntryIndexedValue">False</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/CheckedGroups/=TBF_002FUI_002FBench_002FMetrology_002FMetrologyDlgPressMeterTab/@EntryIndexedValue">False</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/ResxEditorPersonal/Initialized/@EntryValue">True</s:Boolean></wpf:ResourceDictionary>
|
||||
@ -1530,6 +1530,10 @@ namespace TBF.Rig.DataEntry.StandartCameraPurchaseOrder
|
||||
}
|
||||
|
||||
private void comboBoxN1_KeyDown(object sender, KeyEventArgs e)
|
||||
{
|
||||
ProcessKeyDown(sender, e);
|
||||
}
|
||||
private void ProcessKeyDown(object sender, KeyEventArgs e)
|
||||
{
|
||||
if (e.KeyCode == Keys.Enter)
|
||||
{
|
||||
@ -1552,29 +1556,100 @@ namespace TBF.Rig.DataEntry.StandartCameraPurchaseOrder
|
||||
//PerformActionComboShuffle(sender as ComboBox);
|
||||
}
|
||||
|
||||
private void comboBoxN2_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
private void comboBoxN5_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
private void comboBoxN3_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
private void comboBoxN4_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
private void comboBoxN11_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
private void comboBoxN2_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN5_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN3_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN4_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN11_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN6_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN7_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN8_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN9_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN10_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN12_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN13_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN14_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN15_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN16_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN17_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN18_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN19_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN20_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN21_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN22_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN23_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN24_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN25_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN26_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN27_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN28_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN29_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN30_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN31_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN32_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN33_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN34_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN35_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN36_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN37_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN38_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN39_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN40_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN41_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN42_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN43_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN44_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN45_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN46_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN47_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN48_SelectedIndexChanged(object sender, EventArgs e) { PerformActionComboShuffle(sender as ComboBox); }
|
||||
private void comboBoxN48_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e); }
|
||||
private void comboBoxN47_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e); }
|
||||
private void comboBoxN46_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e); }
|
||||
private void comboBoxN45_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e); }
|
||||
private void comboBoxN44_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e); }
|
||||
private void comboBoxN43_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e); }
|
||||
private void comboBoxN42_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e); }
|
||||
private void comboBoxN40_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e); }
|
||||
private void comboBoxN41_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e); }
|
||||
private void comboBoxN39_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e); }
|
||||
private void comboBoxN38_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e); }
|
||||
private void comboBoxN37_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN36_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN35_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN34_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN33_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN32_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN31_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN30_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN29_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN28_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN27_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN26_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN25_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN24_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN23_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN22_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN21_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN20_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN19_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN18_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN17_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN16_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN15_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN14_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN13_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN12_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN11_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN10_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN9_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN8_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN7_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN6_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN5_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN4_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN3_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
private void comboBoxN2_KeyDown(object sender, KeyEventArgs e) { ProcessKeyDown(sender, e);}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -1256,6 +1256,7 @@ namespace TBF.Rig.DataEntry.StandartCameraPurchaseOrder
|
||||
this.comboBoxN2.FormattingEnabled = true;
|
||||
this.comboBoxN2.Name = "comboBoxN2";
|
||||
this.comboBoxN2.SelectedIndexChanged += new System.EventHandler(this.comboBoxN2_SelectedIndexChanged);
|
||||
this.comboBoxN2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN2_KeyDown);
|
||||
//
|
||||
// comboBoxN3
|
||||
//
|
||||
@ -1263,6 +1264,7 @@ namespace TBF.Rig.DataEntry.StandartCameraPurchaseOrder
|
||||
this.comboBoxN3.FormattingEnabled = true;
|
||||
this.comboBoxN3.Name = "comboBoxN3";
|
||||
this.comboBoxN3.SelectedIndexChanged += new System.EventHandler(this.comboBoxN3_SelectedIndexChanged);
|
||||
this.comboBoxN3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN3_KeyDown);
|
||||
//
|
||||
// comboBoxN4
|
||||
//
|
||||
@ -1270,6 +1272,7 @@ namespace TBF.Rig.DataEntry.StandartCameraPurchaseOrder
|
||||
this.comboBoxN4.FormattingEnabled = true;
|
||||
this.comboBoxN4.Name = "comboBoxN4";
|
||||
this.comboBoxN4.SelectedIndexChanged += new System.EventHandler(this.comboBoxN4_SelectedIndexChanged);
|
||||
this.comboBoxN4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN4_KeyDown);
|
||||
//
|
||||
// comboBoxN5
|
||||
//
|
||||
@ -1277,264 +1280,351 @@ namespace TBF.Rig.DataEntry.StandartCameraPurchaseOrder
|
||||
this.comboBoxN5.FormattingEnabled = true;
|
||||
this.comboBoxN5.Name = "comboBoxN5";
|
||||
this.comboBoxN5.SelectedIndexChanged += new System.EventHandler(this.comboBoxN5_SelectedIndexChanged);
|
||||
this.comboBoxN5.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN5_KeyDown);
|
||||
//
|
||||
// comboBoxN6
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN6, "comboBoxN6");
|
||||
this.comboBoxN6.FormattingEnabled = true;
|
||||
this.comboBoxN6.Name = "comboBoxN6";
|
||||
this.comboBoxN6.SelectedIndexChanged += new System.EventHandler(this.comboBoxN6_SelectedIndexChanged);
|
||||
this.comboBoxN6.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN6_KeyDown);
|
||||
//
|
||||
// comboBoxN7
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN7, "comboBoxN7");
|
||||
this.comboBoxN7.FormattingEnabled = true;
|
||||
this.comboBoxN7.Name = "comboBoxN7";
|
||||
this.comboBoxN7.SelectedIndexChanged += new System.EventHandler(this.comboBoxN7_SelectedIndexChanged);
|
||||
this.comboBoxN7.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN7_KeyDown);
|
||||
//
|
||||
// comboBoxN8
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN8, "comboBoxN8");
|
||||
this.comboBoxN8.FormattingEnabled = true;
|
||||
this.comboBoxN8.Name = "comboBoxN8";
|
||||
this.comboBoxN8.SelectedIndexChanged += new System.EventHandler(this.comboBoxN8_SelectedIndexChanged);
|
||||
this.comboBoxN8.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN8_KeyDown);
|
||||
//
|
||||
// comboBoxN9
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN9, "comboBoxN9");
|
||||
this.comboBoxN9.FormattingEnabled = true;
|
||||
this.comboBoxN9.Name = "comboBoxN9";
|
||||
this.comboBoxN9.SelectedIndexChanged += new System.EventHandler(this.comboBoxN9_SelectedIndexChanged);
|
||||
this.comboBoxN9.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN9_KeyDown);
|
||||
//
|
||||
// comboBoxN10
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN10, "comboBoxN10");
|
||||
this.comboBoxN10.FormattingEnabled = true;
|
||||
this.comboBoxN10.Name = "comboBoxN10";
|
||||
this.comboBoxN10.SelectedIndexChanged += new System.EventHandler(this.comboBoxN10_SelectedIndexChanged);
|
||||
this.comboBoxN10.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN10_KeyDown);
|
||||
//
|
||||
// comboBoxN11
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN11, "comboBoxN11");
|
||||
this.comboBoxN11.FormattingEnabled = true;
|
||||
this.comboBoxN11.Name = "comboBoxN11";
|
||||
this.comboBoxN11.SelectedIndexChanged += new System.EventHandler(this.comboBoxN11_SelectedIndexChanged);
|
||||
this.comboBoxN11.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN11_KeyDown);
|
||||
//
|
||||
// comboBoxN12
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN12, "comboBoxN12");
|
||||
this.comboBoxN12.FormattingEnabled = true;
|
||||
this.comboBoxN12.Name = "comboBoxN12";
|
||||
this.comboBoxN12.SelectedIndexChanged += new System.EventHandler(this.comboBoxN12_SelectedIndexChanged);
|
||||
this.comboBoxN12.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN12_KeyDown);
|
||||
//
|
||||
// comboBoxN13
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN13, "comboBoxN13");
|
||||
this.comboBoxN13.FormattingEnabled = true;
|
||||
this.comboBoxN13.Name = "comboBoxN13";
|
||||
this.comboBoxN13.SelectedIndexChanged += new System.EventHandler(this.comboBoxN13_SelectedIndexChanged);
|
||||
this.comboBoxN13.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN13_KeyDown);
|
||||
//
|
||||
// comboBoxN14
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN14, "comboBoxN14");
|
||||
this.comboBoxN14.FormattingEnabled = true;
|
||||
this.comboBoxN14.Name = "comboBoxN14";
|
||||
this.comboBoxN14.SelectedIndexChanged += new System.EventHandler(this.comboBoxN14_SelectedIndexChanged);
|
||||
this.comboBoxN14.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN14_KeyDown);
|
||||
//
|
||||
// comboBoxN15
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN15, "comboBoxN15");
|
||||
this.comboBoxN15.FormattingEnabled = true;
|
||||
this.comboBoxN15.Name = "comboBoxN15";
|
||||
this.comboBoxN15.SelectedIndexChanged += new System.EventHandler(this.comboBoxN15_SelectedIndexChanged);
|
||||
this.comboBoxN15.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN15_KeyDown);
|
||||
//
|
||||
// comboBoxN16
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN16, "comboBoxN16");
|
||||
this.comboBoxN16.FormattingEnabled = true;
|
||||
this.comboBoxN16.Name = "comboBoxN16";
|
||||
this.comboBoxN16.SelectedIndexChanged += new System.EventHandler(this.comboBoxN16_SelectedIndexChanged);
|
||||
this.comboBoxN16.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN16_KeyDown);
|
||||
//
|
||||
// comboBoxN17
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN17, "comboBoxN17");
|
||||
this.comboBoxN17.FormattingEnabled = true;
|
||||
this.comboBoxN17.Name = "comboBoxN17";
|
||||
this.comboBoxN17.SelectedIndexChanged += new System.EventHandler(this.comboBoxN17_SelectedIndexChanged);
|
||||
this.comboBoxN17.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN17_KeyDown);
|
||||
//
|
||||
// comboBoxN18
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN18, "comboBoxN18");
|
||||
this.comboBoxN18.FormattingEnabled = true;
|
||||
this.comboBoxN18.Name = "comboBoxN18";
|
||||
this.comboBoxN18.SelectedIndexChanged += new System.EventHandler(this.comboBoxN18_SelectedIndexChanged);
|
||||
this.comboBoxN18.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN18_KeyDown);
|
||||
//
|
||||
// comboBoxN19
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN19, "comboBoxN19");
|
||||
this.comboBoxN19.FormattingEnabled = true;
|
||||
this.comboBoxN19.Name = "comboBoxN19";
|
||||
this.comboBoxN19.SelectedIndexChanged += new System.EventHandler(this.comboBoxN19_SelectedIndexChanged);
|
||||
this.comboBoxN19.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN19_KeyDown);
|
||||
//
|
||||
// comboBoxN20
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN20, "comboBoxN20");
|
||||
this.comboBoxN20.FormattingEnabled = true;
|
||||
this.comboBoxN20.Name = "comboBoxN20";
|
||||
this.comboBoxN20.SelectedIndexChanged += new System.EventHandler(this.comboBoxN20_SelectedIndexChanged);
|
||||
this.comboBoxN20.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN20_KeyDown);
|
||||
//
|
||||
// comboBoxN21
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN21, "comboBoxN21");
|
||||
this.comboBoxN21.FormattingEnabled = true;
|
||||
this.comboBoxN21.Name = "comboBoxN21";
|
||||
this.comboBoxN21.SelectedIndexChanged += new System.EventHandler(this.comboBoxN21_SelectedIndexChanged);
|
||||
this.comboBoxN21.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN21_KeyDown);
|
||||
//
|
||||
// comboBoxN22
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN22, "comboBoxN22");
|
||||
this.comboBoxN22.FormattingEnabled = true;
|
||||
this.comboBoxN22.Name = "comboBoxN22";
|
||||
this.comboBoxN22.SelectedIndexChanged += new System.EventHandler(this.comboBoxN22_SelectedIndexChanged);
|
||||
this.comboBoxN22.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN22_KeyDown);
|
||||
//
|
||||
// comboBoxN23
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN23, "comboBoxN23");
|
||||
this.comboBoxN23.FormattingEnabled = true;
|
||||
this.comboBoxN23.Name = "comboBoxN23";
|
||||
this.comboBoxN23.SelectedIndexChanged += new System.EventHandler(this.comboBoxN23_SelectedIndexChanged);
|
||||
this.comboBoxN23.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN23_KeyDown);
|
||||
//
|
||||
// comboBoxN24
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN24, "comboBoxN24");
|
||||
this.comboBoxN24.FormattingEnabled = true;
|
||||
this.comboBoxN24.Name = "comboBoxN24";
|
||||
this.comboBoxN24.SelectedIndexChanged += new System.EventHandler(this.comboBoxN24_SelectedIndexChanged);
|
||||
this.comboBoxN24.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN24_KeyDown);
|
||||
//
|
||||
// comboBoxN48
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN48, "comboBoxN48");
|
||||
this.comboBoxN48.FormattingEnabled = true;
|
||||
this.comboBoxN48.Name = "comboBoxN48";
|
||||
this.comboBoxN48.SelectedIndexChanged += new System.EventHandler(this.comboBoxN48_SelectedIndexChanged);
|
||||
this.comboBoxN48.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN48_KeyDown);
|
||||
//
|
||||
// comboBoxN47
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN47, "comboBoxN47");
|
||||
this.comboBoxN47.FormattingEnabled = true;
|
||||
this.comboBoxN47.Name = "comboBoxN47";
|
||||
this.comboBoxN47.SelectedIndexChanged += new System.EventHandler(this.comboBoxN47_SelectedIndexChanged);
|
||||
this.comboBoxN47.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN47_KeyDown);
|
||||
//
|
||||
// comboBoxN46
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN46, "comboBoxN46");
|
||||
this.comboBoxN46.FormattingEnabled = true;
|
||||
this.comboBoxN46.Name = "comboBoxN46";
|
||||
this.comboBoxN46.SelectedIndexChanged += new System.EventHandler(this.comboBoxN46_SelectedIndexChanged);
|
||||
this.comboBoxN46.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN46_KeyDown);
|
||||
//
|
||||
// comboBoxN45
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN45, "comboBoxN45");
|
||||
this.comboBoxN45.FormattingEnabled = true;
|
||||
this.comboBoxN45.Name = "comboBoxN45";
|
||||
this.comboBoxN45.SelectedIndexChanged += new System.EventHandler(this.comboBoxN45_SelectedIndexChanged);
|
||||
this.comboBoxN45.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN45_KeyDown);
|
||||
//
|
||||
// comboBoxN44
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN44, "comboBoxN44");
|
||||
this.comboBoxN44.FormattingEnabled = true;
|
||||
this.comboBoxN44.Name = "comboBoxN44";
|
||||
this.comboBoxN44.SelectedIndexChanged += new System.EventHandler(this.comboBoxN44_SelectedIndexChanged);
|
||||
this.comboBoxN44.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN44_KeyDown);
|
||||
//
|
||||
// comboBoxN43
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN43, "comboBoxN43");
|
||||
this.comboBoxN43.FormattingEnabled = true;
|
||||
this.comboBoxN43.Name = "comboBoxN43";
|
||||
this.comboBoxN43.SelectedIndexChanged += new System.EventHandler(this.comboBoxN43_SelectedIndexChanged);
|
||||
this.comboBoxN43.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN43_KeyDown);
|
||||
//
|
||||
// comboBoxN42
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN42, "comboBoxN42");
|
||||
this.comboBoxN42.FormattingEnabled = true;
|
||||
this.comboBoxN42.Name = "comboBoxN42";
|
||||
this.comboBoxN42.SelectedIndexChanged += new System.EventHandler(this.comboBoxN42_SelectedIndexChanged);
|
||||
this.comboBoxN42.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN42_KeyDown);
|
||||
//
|
||||
// comboBoxN41
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN41, "comboBoxN41");
|
||||
this.comboBoxN41.FormattingEnabled = true;
|
||||
this.comboBoxN41.Name = "comboBoxN41";
|
||||
this.comboBoxN41.SelectedIndexChanged += new System.EventHandler(this.comboBoxN41_SelectedIndexChanged);
|
||||
this.comboBoxN41.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN41_KeyDown);
|
||||
//
|
||||
// comboBoxN40
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN40, "comboBoxN40");
|
||||
this.comboBoxN40.FormattingEnabled = true;
|
||||
this.comboBoxN40.Name = "comboBoxN40";
|
||||
this.comboBoxN40.SelectedIndexChanged += new System.EventHandler(this.comboBoxN40_SelectedIndexChanged);
|
||||
this.comboBoxN40.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN40_KeyDown);
|
||||
//
|
||||
// comboBoxN39
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN39, "comboBoxN39");
|
||||
this.comboBoxN39.FormattingEnabled = true;
|
||||
this.comboBoxN39.Name = "comboBoxN39";
|
||||
this.comboBoxN39.SelectedIndexChanged += new System.EventHandler(this.comboBoxN39_SelectedIndexChanged);
|
||||
this.comboBoxN39.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN39_KeyDown);
|
||||
//
|
||||
// comboBoxN38
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN38, "comboBoxN38");
|
||||
this.comboBoxN38.FormattingEnabled = true;
|
||||
this.comboBoxN38.Name = "comboBoxN38";
|
||||
this.comboBoxN38.SelectedIndexChanged += new System.EventHandler(this.comboBoxN38_SelectedIndexChanged);
|
||||
this.comboBoxN38.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN38_KeyDown);
|
||||
//
|
||||
// comboBoxN37
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN37, "comboBoxN37");
|
||||
this.comboBoxN37.FormattingEnabled = true;
|
||||
this.comboBoxN37.Name = "comboBoxN37";
|
||||
this.comboBoxN37.SelectedIndexChanged += new System.EventHandler(this.comboBoxN37_SelectedIndexChanged);
|
||||
this.comboBoxN37.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN37_KeyDown);
|
||||
//
|
||||
// comboBoxN36
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN36, "comboBoxN36");
|
||||
this.comboBoxN36.FormattingEnabled = true;
|
||||
this.comboBoxN36.Name = "comboBoxN36";
|
||||
this.comboBoxN36.SelectedIndexChanged += new System.EventHandler(this.comboBoxN36_SelectedIndexChanged);
|
||||
this.comboBoxN36.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN36_KeyDown);
|
||||
//
|
||||
// comboBoxN35
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN35, "comboBoxN35");
|
||||
this.comboBoxN35.FormattingEnabled = true;
|
||||
this.comboBoxN35.Name = "comboBoxN35";
|
||||
this.comboBoxN35.SelectedIndexChanged += new System.EventHandler(this.comboBoxN35_SelectedIndexChanged);
|
||||
this.comboBoxN35.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN35_KeyDown);
|
||||
//
|
||||
// comboBoxN34
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN34, "comboBoxN34");
|
||||
this.comboBoxN34.FormattingEnabled = true;
|
||||
this.comboBoxN34.Name = "comboBoxN34";
|
||||
this.comboBoxN34.SelectedIndexChanged += new System.EventHandler(this.comboBoxN34_SelectedIndexChanged);
|
||||
this.comboBoxN34.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN34_KeyDown);
|
||||
//
|
||||
// comboBoxN33
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN33, "comboBoxN33");
|
||||
this.comboBoxN33.FormattingEnabled = true;
|
||||
this.comboBoxN33.Name = "comboBoxN33";
|
||||
this.comboBoxN33.SelectedIndexChanged += new System.EventHandler(this.comboBoxN33_SelectedIndexChanged);
|
||||
this.comboBoxN33.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN33_KeyDown);
|
||||
//
|
||||
// comboBoxN32
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN32, "comboBoxN32");
|
||||
this.comboBoxN32.FormattingEnabled = true;
|
||||
this.comboBoxN32.Name = "comboBoxN32";
|
||||
this.comboBoxN32.SelectedIndexChanged += new System.EventHandler(this.comboBoxN32_SelectedIndexChanged);
|
||||
this.comboBoxN32.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN32_KeyDown);
|
||||
//
|
||||
// comboBoxN31
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN31, "comboBoxN31");
|
||||
this.comboBoxN31.FormattingEnabled = true;
|
||||
this.comboBoxN31.Name = "comboBoxN31";
|
||||
this.comboBoxN31.SelectedIndexChanged += new System.EventHandler(this.comboBoxN31_SelectedIndexChanged);
|
||||
this.comboBoxN31.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN31_KeyDown);
|
||||
//
|
||||
// comboBoxN30
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN30, "comboBoxN30");
|
||||
this.comboBoxN30.FormattingEnabled = true;
|
||||
this.comboBoxN30.Name = "comboBoxN30";
|
||||
this.comboBoxN30.SelectedIndexChanged += new System.EventHandler(this.comboBoxN30_SelectedIndexChanged);
|
||||
this.comboBoxN30.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN30_KeyDown);
|
||||
//
|
||||
// comboBoxN29
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN29, "comboBoxN29");
|
||||
this.comboBoxN29.FormattingEnabled = true;
|
||||
this.comboBoxN29.Name = "comboBoxN29";
|
||||
this.comboBoxN29.SelectedIndexChanged += new System.EventHandler(this.comboBoxN29_SelectedIndexChanged);
|
||||
this.comboBoxN29.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN29_KeyDown);
|
||||
//
|
||||
// comboBoxN28
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN28, "comboBoxN28");
|
||||
this.comboBoxN28.FormattingEnabled = true;
|
||||
this.comboBoxN28.Name = "comboBoxN28";
|
||||
this.comboBoxN28.SelectedIndexChanged += new System.EventHandler(this.comboBoxN28_SelectedIndexChanged);
|
||||
this.comboBoxN28.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN28_KeyDown);
|
||||
//
|
||||
// comboBoxN27
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN27, "comboBoxN27");
|
||||
this.comboBoxN27.FormattingEnabled = true;
|
||||
this.comboBoxN27.Name = "comboBoxN27";
|
||||
this.comboBoxN27.SelectedIndexChanged += new System.EventHandler(this.comboBoxN27_SelectedIndexChanged);
|
||||
this.comboBoxN27.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN27_KeyDown);
|
||||
//
|
||||
// comboBoxN26
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN26, "comboBoxN26");
|
||||
this.comboBoxN26.FormattingEnabled = true;
|
||||
this.comboBoxN26.Name = "comboBoxN26";
|
||||
this.comboBoxN26.SelectedIndexChanged += new System.EventHandler(this.comboBoxN26_SelectedIndexChanged);
|
||||
this.comboBoxN26.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN26_KeyDown);
|
||||
//
|
||||
// comboBoxN25
|
||||
//
|
||||
resources.ApplyResources(this.comboBoxN25, "comboBoxN25");
|
||||
this.comboBoxN25.FormattingEnabled = true;
|
||||
this.comboBoxN25.Name = "comboBoxN25";
|
||||
this.comboBoxN25.SelectedIndexChanged += new System.EventHandler(this.comboBoxN25_SelectedIndexChanged);
|
||||
this.comboBoxN25.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxN25_KeyDown);
|
||||
//
|
||||
// CycleBeginningForm
|
||||
//
|
||||
|
||||
2
TBF/TBF.csproj.DotSettings
Normal file
2
TBF/TBF.csproj.DotSettings
Normal file
@ -0,0 +1,2 @@
|
||||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||
<s:String x:Key="/Default/DesignerComponentManagerNuGet/DesignerToolboxNuGetState/@EntryValue">C:\Users\micha\git\tbf\packages\MySql.Data.6.6.5\lib\net40\MySql.Data.dll|*C:\Users\micha\git\tbf\packages\Oracle.ManagedDataAccess.19.11.0\lib\net40\Oracle.ManagedDataAccess.dll|</s:String></wpf:ResourceDictionary>
|
||||
36
TBFTests/Properties/AssemblyInfo.cs
Normal file
36
TBFTests/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("TBFTests")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("TBFTests")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2023")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("77eb589f-c670-4489-aad6-2a3c02061fd1")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
15
TBFTests/app.config
Normal file
15
TBFTests/app.config
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Moq" publicKeyToken="69f491c39445e920" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.10827.0" newVersion="4.0.10827.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
||||
BIN
TBFTests/bin/Debug/CameraBinaryFiles/DiscoveryDaemon
Normal file
BIN
TBFTests/bin/Debug/CameraBinaryFiles/DiscoveryDaemon
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/CameraBinaryFiles/GrabImage
Normal file
BIN
TBFTests/bin/Debug/CameraBinaryFiles/GrabImage
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/CameraBinaryFiles/JpegLib.so
Normal file
BIN
TBFTests/bin/Debug/CameraBinaryFiles/JpegLib.so
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/CameraBinaryFiles/Measurement
Normal file
BIN
TBFTests/bin/Debug/CameraBinaryFiles/Measurement
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/CameraBinaryFiles/RoiDetection
Normal file
BIN
TBFTests/bin/Debug/CameraBinaryFiles/RoiDetection
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/CameraBinaryFiles/VisionLib.so
Normal file
BIN
TBFTests/bin/Debug/CameraBinaryFiles/VisionLib.so
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/CameraBinaryFiles2/DiscoveryDaemon
Normal file
BIN
TBFTests/bin/Debug/CameraBinaryFiles2/DiscoveryDaemon
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/CameraBinaryFiles2/GrabImage
Normal file
BIN
TBFTests/bin/Debug/CameraBinaryFiles2/GrabImage
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/CameraBinaryFiles2/Measurement
Normal file
BIN
TBFTests/bin/Debug/CameraBinaryFiles2/Measurement
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/CameraBinaryFiles2/RoiDetection
Normal file
BIN
TBFTests/bin/Debug/CameraBinaryFiles2/RoiDetection
Normal file
Binary file not shown.
1
TBFTests/bin/Debug/CameraBinaryFiles2/hrlivestream.sh
Normal file
1
TBFTests/bin/Debug/CameraBinaryFiles2/hrlivestream.sh
Normal file
@ -0,0 +1 @@
|
||||
/opt/vc/bin/raspivid -o - -t 0 | /usr/bin/cvlc stream:///dev/stdin --sout "#rtp{sdp=rtsp://:8554/}" :demux=h264
|
||||
1
TBFTests/bin/Debug/CameraBinaryFiles2/livestream.sh
Normal file
1
TBFTests/bin/Debug/CameraBinaryFiles2/livestream.sh
Normal file
@ -0,0 +1 @@
|
||||
/opt/vc/bin/raspivid -w 640 -h 480 -fps 30 -o - -t 0 | /usr/bin/cvlc stream:///dev/stdin --sout "#rtp{sdp=rtsp://:8554/}" :demux=h264
|
||||
2
TBFTests/bin/Debug/CameraBinaryFiles2/mjpegrtpstream.sh
Normal file
2
TBFTests/bin/Debug/CameraBinaryFiles2/mjpegrtpstream.sh
Normal file
@ -0,0 +1,2 @@
|
||||
/opt/vc/bin/raspivid -t 0 -cd MJPEG -w 1280 -h 960 -fps 30 -b 8000000 -o - | gst-launch-1.0 fdsrc ! "image/jpeg,framerate=40/1" ! jpegparse ! rtpjpegpay ! udpsink host=192.168.0.200 port=20000
|
||||
|
||||
BIN
TBFTests/bin/Debug/Castle.Core.dll
Normal file
BIN
TBFTests/bin/Debug/Castle.Core.dll
Normal file
Binary file not shown.
6058
TBFTests/bin/Debug/Castle.Core.xml
Normal file
6058
TBFTests/bin/Debug/Castle.Core.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
TBFTests/bin/Debug/Common.dll
Normal file
BIN
TBFTests/bin/Debug/Common.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/Common.pdb
Normal file
BIN
TBFTests/bin/Debug/Common.pdb
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/Config.dll
Normal file
BIN
TBFTests/bin/Debug/Config.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/Config.pdb
Normal file
BIN
TBFTests/bin/Debug/Config.pdb
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/DataStreamInterface.dll
Normal file
BIN
TBFTests/bin/Debug/DataStreamInterface.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/DataStreamInterface.pdb
Normal file
BIN
TBFTests/bin/Debug/DataStreamInterface.pdb
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/Dirichlet.Numerics.dll
Normal file
BIN
TBFTests/bin/Debug/Dirichlet.Numerics.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/Dirichlet.Numerics.pdb
Normal file
BIN
TBFTests/bin/Debug/Dirichlet.Numerics.pdb
Normal file
Binary file not shown.
Binary file not shown.
BIN
TBFTests/bin/Debug/FluentNHibernate.dll
Normal file
BIN
TBFTests/bin/Debug/FluentNHibernate.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/FluentNHibernate.pdb
Normal file
BIN
TBFTests/bin/Debug/FluentNHibernate.pdb
Normal file
Binary file not shown.
5850
TBFTests/bin/Debug/FluentNHibernate.xml
Normal file
5850
TBFTests/bin/Debug/FluentNHibernate.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
TBFTests/bin/Debug/GemCard.dll
Normal file
BIN
TBFTests/bin/Debug/GemCard.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/GemCard.pdb
Normal file
BIN
TBFTests/bin/Debug/GemCard.pdb
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/GenCode128.dll
Normal file
BIN
TBFTests/bin/Debug/GenCode128.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/GenCode128.pdb
Normal file
BIN
TBFTests/bin/Debug/GenCode128.pdb
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/Gma.QrCodeNet.Encoding.dll
Normal file
BIN
TBFTests/bin/Debug/Gma.QrCodeNet.Encoding.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/Gma.QrCodeNet.Encoding.pdb
Normal file
BIN
TBFTests/bin/Debug/Gma.QrCodeNet.Encoding.pdb
Normal file
Binary file not shown.
1117
TBFTests/bin/Debug/Gma.QrCodeNet.Encoding.xml
Normal file
1117
TBFTests/bin/Debug/Gma.QrCodeNet.Encoding.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
TBFTests/bin/Debug/GraphLib.dll
Normal file
BIN
TBFTests/bin/Debug/GraphLib.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/GraphLib.pdb
Normal file
BIN
TBFTests/bin/Debug/GraphLib.pdb
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/Iesi.Collections.dll
Normal file
BIN
TBFTests/bin/Debug/Iesi.Collections.dll
Normal file
Binary file not shown.
541
TBFTests/bin/Debug/Iesi.Collections.xml
Normal file
541
TBFTests/bin/Debug/Iesi.Collections.xml
Normal file
@ -0,0 +1,541 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Iesi.Collections</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Iesi.Collections.Generic.LinkedHashSet`1">
|
||||
<summary>
|
||||
Implementation of ISet that also maintains a linked list over all elements.
|
||||
Enumeration of this set is guaranteed to return the elements in the order
|
||||
they were added.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through the collection.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
|
||||
</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.System#Collections#IEnumerable#GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through a collection.
|
||||
</summary>
|
||||
<returns>
|
||||
An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
|
||||
</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
|
||||
<summary>
|
||||
Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.Clear">
|
||||
<summary>
|
||||
Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.Contains(`0)">
|
||||
<summary>
|
||||
Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
|
||||
</summary>
|
||||
<returns>
|
||||
true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.CopyTo(`0[],System.Int32)">
|
||||
<summary>
|
||||
Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
|
||||
</summary>
|
||||
<param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param><param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param><exception cref="T:System.ArgumentNullException"><paramref name="array"/> is null.</exception><exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex"/> is less than 0.</exception><exception cref="T:System.ArgumentException"><paramref name="array"/> is multidimensional.-or-The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1"/> is greater than the available space from <paramref name="arrayIndex"/> to the end of the destination <paramref name="array"/>.-or-Type <paramref name="T"/> cannot be cast automatically to the type of the destination <paramref name="array"/>.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.Remove(`0)">
|
||||
<summary>
|
||||
Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</returns>
|
||||
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains all elements that are present in either the current set or the specified collection.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains only elements that are also in a specified collection.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Removes all elements in the specified collection from the current set.
|
||||
</summary>
|
||||
<param name="other">The collection of items to remove from the set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether a set is a subset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a subset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a superset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a superset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a correct superset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the <see cref="T:System.Collections.Generic.ISet`1"/> object is a correct superset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set. </param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a proper (strict) subset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a correct subset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set overlaps with the specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set and <paramref name="other"/> share at least one common element; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set and the specified collection contain the same elements.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is equal to <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.Add(`0)">
|
||||
<summary>
|
||||
Adds an element to the current set and returns a value to indicate if the element was successfully added.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the element is added to the set; false if the element is already in the set.
|
||||
</returns>
|
||||
<param name="item">The element to add to the set.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.CountOthers(System.Collections.Generic.IEnumerable{`0},System.Int32@)">
|
||||
<summary>
|
||||
Count the elements in the given collection and determine both the total
|
||||
count and how many of the elements that are present in the current set.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.AsSet(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Cast the given collection to an ISet<T> if possible. If not,
|
||||
return a new set containing the items.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.LinkedHashSet`1.Unlink(Iesi.Collections.Generic.LinkedHashSet{`0}.LinkedHashNode{`0})">
|
||||
<summary>
|
||||
Unlink a node from the linked list by updating the node pointers in
|
||||
its preceeding and subsequent node. Also update the _first and _last
|
||||
pointers if necessary.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Iesi.Collections.Generic.LinkedHashSet`1.Count">
|
||||
<summary>
|
||||
Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Iesi.Collections.Generic.LinkedHashSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
|
||||
<summary>
|
||||
Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only; otherwise, false.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Iesi.Collections.Generic.ReadOnlySet`1">
|
||||
<summary>
|
||||
<p>Implements a read-only <c>Set</c> wrapper.</p>
|
||||
<p>Although this is advertised as immutable, it really isn't. Anyone with access to the
|
||||
wrapped set can still change the set.</p>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.#ctor(System.Collections.Generic.ISet{`0})">
|
||||
<summary>
|
||||
Constructs an immutable (read-only) <c>Set</c> wrapper.
|
||||
</summary>
|
||||
<param name="basisSet">The <c>Set</c> that is wrapped.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#IEnumerable#GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through a collection.
|
||||
</summary>
|
||||
<returns>
|
||||
An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
|
||||
</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through the collection.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
|
||||
</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
|
||||
<summary>
|
||||
Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ICollection{T}#Clear">
|
||||
<summary>
|
||||
Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.Contains(`0)">
|
||||
<summary>
|
||||
Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
|
||||
</summary>
|
||||
<returns>
|
||||
true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.CopyTo(`0[],System.Int32)">
|
||||
<summary>
|
||||
Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
|
||||
</summary>
|
||||
<param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param><param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param><exception cref="T:System.ArgumentNullException"><paramref name="array"/> is null.</exception><exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex"/> is less than 0.</exception><exception cref="T:System.ArgumentException"><paramref name="array"/> is multidimensional.-or-The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1"/> is greater than the available space from <paramref name="arrayIndex"/> to the end of the destination <paramref name="array"/>.-or-Type <paramref name="T"/> cannot be cast automatically to the type of the destination <paramref name="array"/>.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ICollection{T}#Remove(`0)">
|
||||
<summary>
|
||||
Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</returns>
|
||||
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ISet{T}#Add(`0)">
|
||||
<summary>
|
||||
Adds an element to the current set and returns a value to indicate if the element was successfully added.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the element is added to the set; false if the element is already in the set.
|
||||
</returns>
|
||||
<param name="item">The element to add to the set.</param>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ISet{T}#UnionWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains all elements that are present in both the current set and in the specified collection.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ISet{T}#IntersectWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains only elements that are also in a specified collection.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ISet{T}#ExceptWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Removes all elements in the specified collection from the current set.
|
||||
</summary>
|
||||
<param name="other">The collection of items to remove from the set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.System#Collections#Generic#ISet{T}#SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
<exception cref="T:System.NotSupportedException"> is always thrown</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether a set is a subset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a subset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a superset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a superset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a correct superset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the <see cref="T:System.Collections.Generic.ISet`1"/> object is a correct superset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set. </param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a property (strict) subset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a correct subset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set overlaps with the specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set and <paramref name="other"/> share at least one common element; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.ReadOnlySet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set and the specified collection contain the same elements.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is equal to <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="P:Iesi.Collections.Generic.ReadOnlySet`1.Count">
|
||||
<summary>
|
||||
Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Iesi.Collections.Generic.ReadOnlySet`1.IsReadOnly">
|
||||
<summary>
|
||||
Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
|
||||
</summary>
|
||||
<returns>
|
||||
True.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Iesi.Collections.Generic.SynchronizedSet`1">
|
||||
<summary>
|
||||
<p>Implements a thread-safe <c>Set</c> wrapper. The implementation is extremely conservative,
|
||||
serializing critical sections to prevent possible deadlocks, and locking on everything.
|
||||
The one exception is for enumeration, which is inherently not thread-safe. For this, you
|
||||
have to <c>lock</c> the <c>SyncRoot</c> object for the duration of the enumeration.</p>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.#ctor(System.Collections.Generic.ISet{`0})">
|
||||
<summary>
|
||||
Constructs a thread-safe <c>ISet</c> wrapper.
|
||||
</summary>
|
||||
<param name="basisSet">The <c>Set</c> object that this object will wrap.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
|
||||
<summary>
|
||||
Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.Clear">
|
||||
<summary>
|
||||
Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.Contains(`0)">
|
||||
<summary>
|
||||
Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
|
||||
</summary>
|
||||
<returns>
|
||||
true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.CopyTo(`0[],System.Int32)">
|
||||
<summary>
|
||||
Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
|
||||
</summary>
|
||||
<param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param><param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param><exception cref="T:System.ArgumentNullException"><paramref name="array"/> is null.</exception><exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex"/> is less than 0.</exception><exception cref="T:System.ArgumentException"><paramref name="array"/> is multidimensional.-or-The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1"/> is greater than the available space from <paramref name="arrayIndex"/> to the end of the destination <paramref name="array"/>.-or-Type <paramref name="T"/> cannot be cast automatically to the type of the destination <paramref name="array"/>.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.Remove(`0)">
|
||||
<summary>
|
||||
Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</returns>
|
||||
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains all elements that are present in either the current set or in the specified collection.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains only elements that are also in a specified collection.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Removes all elements in the specified collection from the current set.
|
||||
</summary>
|
||||
<param name="other">The collection of items to remove from the set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
|
||||
</summary>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether a set is a subset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a subset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a superset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a superset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a correct superset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the <see cref="T:System.Collections.Generic.ISet`1"/> object is a correct superset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set. </param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set is a property (strict) subset of a specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is a correct subset of <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set overlaps with the specified collection.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set and <paramref name="other"/> share at least one common element; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
|
||||
<summary>
|
||||
Determines whether the current set and the specified collection contain the same elements.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the current set is equal to <paramref name="other"/>; otherwise, false.
|
||||
</returns>
|
||||
<param name="other">The collection to compare to the current set.</param><exception cref="T:System.ArgumentNullException"><paramref name="other"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.Add(`0)">
|
||||
<summary>
|
||||
Adds an element to the current set and returns a value to indicate if the element was successfully added.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the element is added to the set; false if the element is already in the set.
|
||||
</returns>
|
||||
<param name="item">The element to add to the set.</param>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.System#Collections#IEnumerable#GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through a collection. Enumeration is inherently not
|
||||
thread-safe. Use a <c>lock</c> on the <c>SyncRoot</c> to synchronize the entire enumeration process.
|
||||
</summary>
|
||||
<returns>
|
||||
An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
|
||||
</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:Iesi.Collections.Generic.SynchronizedSet`1.GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through the collection. Enumeration is inherently not
|
||||
thread-safe. Use a <c>lock</c> on the <c>SyncRoot</c> to synchronize the entire enumeration process.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
|
||||
</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:Iesi.Collections.Generic.SynchronizedSet`1.Count">
|
||||
<summary>
|
||||
Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Iesi.Collections.Generic.SynchronizedSet`1.IsReadOnly">
|
||||
<summary>
|
||||
Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only; otherwise, false.
|
||||
</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
TBFTests/bin/Debug/JetBrains.Annotations.dll
Normal file
BIN
TBFTests/bin/Debug/JetBrains.Annotations.dll
Normal file
Binary file not shown.
1231
TBFTests/bin/Debug/JetBrains.Annotations.xml
Normal file
1231
TBFTests/bin/Debug/JetBrains.Annotations.xml
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -0,0 +1,173 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Extensions.Configuration.Abstractions</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Extensions.Configuration.ConfigurationExtensions">
|
||||
<summary>Extension methods for configuration classes.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.ConfigurationExtensions.Add``1(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{``0})">
|
||||
<summary>Adds a new configuration source.</summary>
|
||||
<param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder" /> to add to.</param>
|
||||
<param name="configureSource">Configures the source secrets.</param>
|
||||
<typeparam name="TSource" />
|
||||
<returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.ConfigurationExtensions.AsEnumerable(Microsoft.Extensions.Configuration.IConfiguration)">
|
||||
<summary>Get the enumeration of key value pairs within the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /></summary>
|
||||
<param name="configuration">The <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> to enumerate.</param>
|
||||
<returns>An enumeration of key value pairs.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.ConfigurationExtensions.AsEnumerable(Microsoft.Extensions.Configuration.IConfiguration,System.Boolean)">
|
||||
<summary>Get the enumeration of key value pairs within the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /></summary>
|
||||
<param name="configuration">The <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> to enumerate.</param>
|
||||
<param name="makePathsRelative">If true, the child keys returned will have the current configuration's Path trimmed from the front.</param>
|
||||
<returns>An enumeration of key value pairs.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.ConfigurationExtensions.Exists(Microsoft.Extensions.Configuration.IConfigurationSection)">
|
||||
<summary>Determines whether the section has a <see cref="P:Microsoft.Extensions.Configuration.IConfigurationSection.Value" /> or has children.</summary>
|
||||
<param name="section" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.ConfigurationExtensions.GetConnectionString(Microsoft.Extensions.Configuration.IConfiguration,System.String)">
|
||||
<summary>Shorthand for GetSection("ConnectionStrings")[name].</summary>
|
||||
<param name="configuration">The configuration.</param>
|
||||
<param name="name">The connection string key.</param>
|
||||
<returns>The connection string.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Configuration.ConfigurationPath">
|
||||
<summary>Utility methods and constants for manipulating Configuration paths.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Configuration.ConfigurationPath.KeyDelimiter">
|
||||
<summary>The delimiter ":" used to separate individual keys in a path.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.ConfigurationPath.Combine(System.Collections.Generic.IEnumerable{System.String})">
|
||||
<summary>Combines path segments into one path.</summary>
|
||||
<param name="pathSegments">The path segments to combine.</param>
|
||||
<returns>The combined path.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.ConfigurationPath.Combine(System.String[])">
|
||||
<summary>Combines path segments into one path.</summary>
|
||||
<param name="pathSegments">The path segments to combine.</param>
|
||||
<returns>The combined path.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.ConfigurationPath.GetParentPath(System.String)">
|
||||
<summary>Extracts the path corresponding to the parent node for a given path.</summary>
|
||||
<param name="path">The path.</param>
|
||||
<returns>The original path minus the last individual segment found in it. Null if the original path corresponds to a top level node.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.ConfigurationPath.GetSectionKey(System.String)">
|
||||
<summary>Extracts the last path segment from the path.</summary>
|
||||
<param name="path">The path.</param>
|
||||
<returns>The last path segment of the path.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Configuration.ConfigurationRootExtensions">
|
||||
<summary>Extension methods for <see cref="T:Microsoft.Extensions.Configuration.IConfigurationRoot" />.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.ConfigurationRootExtensions.GetDebugView(Microsoft.Extensions.Configuration.IConfigurationRoot)">
|
||||
<summary>Generates a human-readable view of the configuration showing where each value came from.</summary>
|
||||
<param name="root" />
|
||||
<returns>The debug view.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Configuration.IConfiguration">
|
||||
<summary>Represents a set of key/value application configuration properties.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.IConfiguration.GetChildren">
|
||||
<summary>Gets the immediate descendant configuration sub-sections.</summary>
|
||||
<returns>The configuration sub-sections.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.IConfiguration.GetReloadToken">
|
||||
<summary>Returns a <see cref="T:Microsoft.Extensions.Primitives.IChangeToken" /> that can be used to observe when this configuration is reloaded.</summary>
|
||||
<returns>A <see cref="T:Microsoft.Extensions.Primitives.IChangeToken" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.IConfiguration.GetSection(System.String)">
|
||||
<summary>Gets a configuration sub-section with the specified key.</summary>
|
||||
<param name="key">The key of the configuration section.</param>
|
||||
<returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSection" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Configuration.IConfiguration.Item(System.String)">
|
||||
<summary>Gets or sets a configuration value.</summary>
|
||||
<param name="key">The configuration key.</param>
|
||||
<returns>The configuration value.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Configuration.IConfigurationBuilder">
|
||||
<summary>Represents a type used to build application configuration.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.IConfigurationBuilder.Add(Microsoft.Extensions.Configuration.IConfigurationSource)">
|
||||
<summary>Adds a new configuration source.</summary>
|
||||
<param name="source">The configuration source to add.</param>
|
||||
<returns>The same <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.IConfigurationBuilder.Build">
|
||||
<summary>Builds an <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> with keys and values from the set of sources registered in
|
||||
<see cref="P:Microsoft.Extensions.Configuration.IConfigurationBuilder.Sources" />.</summary>
|
||||
<returns>An <see cref="T:Microsoft.Extensions.Configuration.IConfigurationRoot" /> with keys and values from the registered sources.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Configuration.IConfigurationBuilder.Properties">
|
||||
<summary>Gets a key/value collection that can be used to share data between the <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder" />
|
||||
and the registered <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSource" />s.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Configuration.IConfigurationBuilder.Sources">
|
||||
<summary>Gets the sources used to obtain configuration values.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Configuration.IConfigurationProvider">
|
||||
<summary>Provides configuration key/values for an application.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.IConfigurationProvider.GetChildKeys(System.Collections.Generic.IEnumerable{System.String},System.String)">
|
||||
<summary>Returns the immediate descendant configuration keys for a given parent path based on this
|
||||
<see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider" />s data and the set of keys returned by all the preceding
|
||||
<see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider" />s.</summary>
|
||||
<param name="earlierKeys">The child keys returned by the preceding providers for the same parent path.</param>
|
||||
<param name="parentPath">The parent path.</param>
|
||||
<returns>The child keys.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.IConfigurationProvider.GetReloadToken">
|
||||
<summary>Returns a change token if this provider supports change tracking, null otherwise.</summary>
|
||||
<returns>The change token.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.IConfigurationProvider.Load">
|
||||
<summary>Loads configuration values from the source represented by this <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider" />.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.IConfigurationProvider.Set(System.String,System.String)">
|
||||
<summary>Sets a configuration value for the specified key.</summary>
|
||||
<param name="key">The key.</param>
|
||||
<param name="value">The value.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.IConfigurationProvider.TryGet(System.String,System.String@)">
|
||||
<summary>Tries to get a configuration value for the specified key.</summary>
|
||||
<param name="key">The key.</param>
|
||||
<param name="value">The value.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if a value for the specified key was found; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Configuration.IConfigurationRoot">
|
||||
<summary>Represents the root of an <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> hierarchy.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.IConfigurationRoot.Reload">
|
||||
<summary>Force the configuration values to be reloaded from the underlying <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider" />s.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Configuration.IConfigurationRoot.Providers">
|
||||
<summary>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider" />s for this configuration.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Configuration.IConfigurationSection">
|
||||
<summary>Represents a section of application configuration values.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Configuration.IConfigurationSection.Key">
|
||||
<summary>Gets the key this section occupies in its parent.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Configuration.IConfigurationSection.Path">
|
||||
<summary>Gets the full path to this section within the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" />.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Configuration.IConfigurationSection.Value">
|
||||
<summary>Gets or sets the section value.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Configuration.IConfigurationSource">
|
||||
<summary>Represents a source of configuration key/values for an application.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Configuration.IConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
|
||||
<summary>Builds the <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider" /> for this source.</summary>
|
||||
<param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder" />.</param>
|
||||
<returns>An <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider" /></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
TBFTests/bin/Debug/Microsoft.Extensions.Primitives.dll
Normal file
BIN
TBFTests/bin/Debug/Microsoft.Extensions.Primitives.dll
Normal file
Binary file not shown.
756
TBFTests/bin/Debug/Microsoft.Extensions.Primitives.xml
Normal file
756
TBFTests/bin/Debug/Microsoft.Extensions.Primitives.xml
Normal file
@ -0,0 +1,756 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Extensions.Primitives</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Extensions.Primitives.CancellationChangeToken">
|
||||
<summary>A <see cref="T:Microsoft.Extensions.Primitives.IChangeToken" /> implementation using <see cref="T:System.Threading.CancellationToken" />.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.CancellationChangeToken.#ctor(System.Threading.CancellationToken)">
|
||||
<summary>Initializes a new instance of <see cref="T:Microsoft.Extensions.Primitives.CancellationChangeToken" />.</summary>
|
||||
<param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" />.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.CancellationChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)">
|
||||
<summary>Registers for a callback that will be invoked when the entry has changed. <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged" /> must be set before the callback is invoked.</summary>
|
||||
<param name="callback">The <see cref="T:System.Action`1" /> to invoke.</param>
|
||||
<param name="state">State to be passed into the callback.</param>
|
||||
<returns>An <see cref="T:System.IDisposable" /> that is used to unregister the callback.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.CancellationChangeToken.ActiveChangeCallbacks">
|
||||
<summary>Indicates if this token will pro-actively raise callbacks. If <see langword="false" />, the token consumer must poll <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged" /> to detect changes.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the token will proactively raise callbacks; <see langword="false" /> otherwise.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.CancellationChangeToken.HasChanged">
|
||||
<summary>Gets a value that indicates if a change has occurred.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if a change has occured; <see langword="false" /> otherwise.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Primitives.ChangeToken">
|
||||
<summary>Propagates notifications that a change has occurred.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.ChangeToken.OnChange(System.Func{Microsoft.Extensions.Primitives.IChangeToken},System.Action)">
|
||||
<summary>Registers the <paramref name="changeTokenConsumer" /> action to be called whenever the token produced changes.</summary>
|
||||
<param name="changeTokenProducer">Produces the change token.</param>
|
||||
<param name="changeTokenConsumer">Action called when the token changes.</param>
|
||||
<returns />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.ChangeToken.OnChange``1(System.Func{Microsoft.Extensions.Primitives.IChangeToken},System.Action{``0},``0)">
|
||||
<summary>Registers the <paramref name="changeTokenConsumer" /> action to be called whenever the token produced changes.</summary>
|
||||
<param name="changeTokenProducer">Produces the change token.</param>
|
||||
<param name="changeTokenConsumer">Action called when the token changes.</param>
|
||||
<param name="state">state for the consumer.</param>
|
||||
<typeparam name="TState">The type of the state for the <paramref name="changeTokenConsumer" /> action.</typeparam>
|
||||
<returns />
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Primitives.CompositeChangeToken">
|
||||
<summary>An <see cref="T:Microsoft.Extensions.Primitives.IChangeToken" /> which represents one or more <see cref="T:Microsoft.Extensions.Primitives.IChangeToken" /> instances.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.CompositeChangeToken.#ctor(System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.Primitives.IChangeToken})">
|
||||
<summary>Creates a new instance of <see cref="T:Microsoft.Extensions.Primitives.CompositeChangeToken" />.</summary>
|
||||
<param name="changeTokens">The list of <see cref="T:Microsoft.Extensions.Primitives.IChangeToken" /> to compose.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.CompositeChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)">
|
||||
<summary>Registers for a callback that will be invoked when the entry has changed. <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged" /> must be set before the callback is invoked.</summary>
|
||||
<param name="callback">The <see cref="T:System.Action`1" /> to invoke.</param>
|
||||
<param name="state">State to be passed into the callback.</param>
|
||||
<returns>An <see cref="T:System.IDisposable" /> that is used to unregister the callback.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.CompositeChangeToken.ActiveChangeCallbacks">
|
||||
<summary>Indicates if this token will pro-actively raise callbacks. If <see langword="false" />, the token consumer must poll <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged" /> to detect changes.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the token will proactively raise callbacks; <see langword="false" /> otherwise.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.CompositeChangeToken.ChangeTokens">
|
||||
<summary>Returns the list of <see cref="T:Microsoft.Extensions.Primitives.IChangeToken" /> which compose the current <see cref="T:Microsoft.Extensions.Primitives.CompositeChangeToken" />.</summary>
|
||||
<returns>The list of <see cref="T:Microsoft.Extensions.Primitives.IChangeToken" /> instances which compose the current <see cref="T:Microsoft.Extensions.Primitives.CompositeChangeToken" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.CompositeChangeToken.HasChanged">
|
||||
<summary>Gets a value that indicates if a change has occurred.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if a change has occured; <see langword="false" /> otherwise.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Primitives.Extensions" />
|
||||
<member name="M:Microsoft.Extensions.Primitives.Extensions.Append(System.Text.StringBuilder,Microsoft.Extensions.Primitives.StringSegment)">
|
||||
<summary>Add the given <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to the <see cref="T:System.Text.StringBuilder" />.</summary>
|
||||
<param name="builder">The <see cref="T:System.Text.StringBuilder" /> to add to.</param>
|
||||
<param name="segment">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to add.</param>
|
||||
<returns>The original <see cref="T:System.Text.StringBuilder" />.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Primitives.IChangeToken">
|
||||
<summary>Propagates notifications that a change has occurred.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.IChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)">
|
||||
<summary>Registers for a callback that will be invoked when the entry has changed.
|
||||
<see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged" /> MUST be set before the callback is invoked.</summary>
|
||||
<param name="callback">The <see cref="T:System.Action`1" /> to invoke.</param>
|
||||
<param name="state">State to be passed into the callback.</param>
|
||||
<returns>An <see cref="T:System.IDisposable" /> that is used to unregister the callback.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.IChangeToken.ActiveChangeCallbacks">
|
||||
<summary>Indicates if this token will pro-actively raise callbacks. If <see langword="false" />, the token consumer must
|
||||
poll <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged" /> to detect changes.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the token will proactively raise callbacks; <see langword="false" /> otherwise.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged">
|
||||
<summary>Gets a value that indicates if a change has occurred.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if a change has occurred; <see langword="false" /> otherwise.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Primitives.StringSegment">
|
||||
<summary>An optimized representation of a substring.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Primitives.StringSegment.Empty">
|
||||
<summary>A <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> for <see cref="F:System.String.Empty" />.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.#ctor(System.String)">
|
||||
<summary>Initializes an instance of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> struct.</summary>
|
||||
<param name="buffer">
|
||||
The original <see cref="T:System.String" />. The <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> includes the whole <see cref="T:System.String" />.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.#ctor(System.String,System.Int32,System.Int32)">
|
||||
<summary>Initializes an instance of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> struct.</summary>
|
||||
<param name="buffer">The original <see cref="T:System.String" /> used as buffer.</param>
|
||||
<param name="offset">The offset of the segment within the <paramref name="buffer" />.</param>
|
||||
<param name="length">The length of the segment.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="buffer" /> is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||
<paramref name="offset" /> or <paramref name="length" /> is less than zero, or <paramref name="offset" /> +
|
||||
<paramref name="length" /> is greater than the number of characters in <paramref name="buffer" />.</exception>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.AsMemory">
|
||||
<summary>Gets a <see cref="T:System.ReadOnlyMemory`1" /> from the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</summary>
|
||||
<returns>The <see cref="T:System.ReadOnlyMemory`1" /> from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.AsSpan">
|
||||
<summary>Gets a <see cref="T:System.ReadOnlySpan`1" /> from the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</summary>
|
||||
<returns>The <see cref="T:System.ReadOnlySpan`1" /> from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Compare(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)">
|
||||
<summary>Compares substrings of two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> objects using the specified rules,
|
||||
and returns an integer that indicates their relative position in the sort order.</summary>
|
||||
<param name="a">The first <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to compare.</param>
|
||||
<param name="b">The second <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to compare.</param>
|
||||
<param name="comparisonType">One of the enumeration values that specifies the rules for the comparison.</param>
|
||||
<returns>
|
||||
A 32-bit signed integer indicating the lexical relationship between the two comparands.
|
||||
The value is negative if <paramref name="a" /> is less than <paramref name="b" />, 0 if the two comparands are equal,
|
||||
and positive if <paramref name="a" /> is greater than <paramref name="b" />.
|
||||
.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.EndsWith(System.String,System.StringComparison)">
|
||||
<summary>Checks if the end of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> matches the specified <see cref="T:System.String" /> when compared using the specified <paramref name="comparisonType" />.</summary>
|
||||
<param name="text">The <see cref="T:System.String" />to compare.</param>
|
||||
<param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="text" /> is <see langword="null" />.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="text" /> matches the end of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment)">
|
||||
<summary>Indicates whether the current object is equal to another object of the same type.</summary>
|
||||
<param name="other">An object to compare with this object.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the current object is equal to the other parameter; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)">
|
||||
<summary>Determines whether two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> objects have the same value. A parameter specifies the culture, case, and
|
||||
sort rules used in the comparison.</summary>
|
||||
<param name="a">The first <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to compare.</param>
|
||||
<param name="b">The second <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to compare.</param>
|
||||
<param name="comparisonType">One of the enumeration values that specifies the rules for the comparison.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the objects are equal; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)">
|
||||
<summary>Indicates whether the current object is equal to another object of the same type.</summary>
|
||||
<param name="other">An object to compare with this object.</param>
|
||||
<param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the current object is equal to the other parameter; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.Object)">
|
||||
<param name="obj" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.String)">
|
||||
<summary>Checks if the specified <see cref="T:System.String" /> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</summary>
|
||||
<param name="text">The <see cref="T:System.String" /> to compare with the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the specified <see cref="T:System.String" /> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.String,System.StringComparison)">
|
||||
<summary>Checks if the specified <see cref="T:System.String" /> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</summary>
|
||||
<param name="text">The <see cref="T:System.String" /> to compare with the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</param>
|
||||
<param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="text" /> is <see langword="null" />.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if the specified <see cref="T:System.String" /> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.GetHashCode" />
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char)">
|
||||
<summary>Gets the zero-based index of the first occurrence of the character <paramref name="c" /> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</summary>
|
||||
<param name="c">The Unicode character to seek.</param>
|
||||
<returns>The zero-based index position of <paramref name="c" /> from the beginning of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> if that character is found, or -1 if it is not.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char,System.Int32)">
|
||||
<summary>Gets the zero-based index of the first occurrence of the character <paramref name="c" /> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.
|
||||
The search starts at <paramref name="start" />.</summary>
|
||||
<param name="c">The Unicode character to seek.</param>
|
||||
<param name="start">The zero-based index position at which the search starts.</param>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||
<paramref name="start" /> is greater than or equal to <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length" /> or less than zero.</exception>
|
||||
<returns>The zero-based index position of <paramref name="c" /> from the beginning of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> if that character is found, or -1 if it is not.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char,System.Int32,System.Int32)">
|
||||
<summary>Gets the zero-based index of the first occurrence of the character <paramref name="c" /> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.
|
||||
The search starts at <paramref name="start" /> and examines a specified number of <paramref name="count" /> character positions.</summary>
|
||||
<param name="c">The Unicode character to seek.</param>
|
||||
<param name="start">The zero-based index position at which the search starts.</param>
|
||||
<param name="count">The number of characters to examine.</param>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||
<paramref name="start" /> or <paramref name="count" /> is less than zero, or <paramref name="start" /> + <paramref name="count" /> is
|
||||
greater than <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length" />.</exception>
|
||||
<returns>The zero-based index position of <paramref name="c" /> from the beginning of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> if that character is found, or -1 if it is not.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[])">
|
||||
<summary>Reports the zero-based index of the first occurrence in this instance of any character in a specified array
|
||||
of Unicode characters.</summary>
|
||||
<param name="anyOf">A Unicode character array containing one or more characters to seek.</param>
|
||||
<returns>The zero-based index position of the first occurrence in this instance where any character in <paramref name="anyOf" />
|
||||
was found; -1 if no character in <paramref name="anyOf" /> was found.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[],System.Int32)">
|
||||
<summary>Reports the zero-based index of the first occurrence in this instance of any character in a specified array
|
||||
of Unicode characters. The search starts at a specified character position.</summary>
|
||||
<param name="anyOf">A Unicode character array containing one or more characters to seek.</param>
|
||||
<param name="startIndex">The search starting position.</param>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||
<paramref name="startIndex" /> is greater than or equal to <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length" /> or less than zero.</exception>
|
||||
<returns>The zero-based index position of the first occurrence in this instance where any character in <paramref name="anyOf" />
|
||||
was found; -1 if no character in <paramref name="anyOf" /> was found.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[],System.Int32,System.Int32)">
|
||||
<summary>Reports the zero-based index of the first occurrence in this instance of any character in a specified array
|
||||
of Unicode characters. The search starts at a specified character position and examines a specified number
|
||||
of character positions.</summary>
|
||||
<param name="anyOf">A Unicode character array containing one or more characters to seek.</param>
|
||||
<param name="startIndex">The search starting position.</param>
|
||||
<param name="count">The number of character positions to examine.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="anyOf" /> is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||
<paramref name="startIndex" /> or <paramref name="count" /> is less than zero, or <paramref name="startIndex" /> + <paramref name="count" /> is
|
||||
greater than <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length" />.</exception>
|
||||
<returns>The zero-based index position of the first occurrence in this instance where any character in <paramref name="anyOf" />
|
||||
was found; -1 if no character in <paramref name="anyOf" /> was found.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.IsNullOrEmpty(Microsoft.Extensions.Primitives.StringSegment)">
|
||||
<summary>Indicates whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> is null or an Empty string.</summary>
|
||||
<param name="value">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to test.</param>
|
||||
<returns />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.LastIndexOf(System.Char)">
|
||||
<summary>Reports the zero-based index position of the last occurrence of a specified Unicode character within this instance.</summary>
|
||||
<param name="value">The Unicode character to seek.</param>
|
||||
<returns>The zero-based index position of value if that character is found, or -1 if it is not.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Equality(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)">
|
||||
<summary>Checks if two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> have the same value.</summary>
|
||||
<param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to compare, or <see langword="null" />.</param>
|
||||
<param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to compare, or <see langword="null" />.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is the same as the value of <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(Microsoft.Extensions.Primitives.StringSegment)~System.ReadOnlyMemory{System.Char}">
|
||||
<summary>Creates a see <see cref="T:System.ReadOnlyMemory`1" /> from the given <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</summary>
|
||||
<param name="segment">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to convert to a <see cref="T:System.ReadOnlyMemory`1" />.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(Microsoft.Extensions.Primitives.StringSegment)~System.ReadOnlySpan{System.Char}">
|
||||
<summary>Creates a see <see cref="T:System.ReadOnlySpan`1" /> from the given <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</summary>
|
||||
<param name="segment">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to convert to a <see cref="T:System.ReadOnlySpan`1" />.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(System.String)~Microsoft.Extensions.Primitives.StringSegment">
|
||||
<summary>Creates a new <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> from the given <see cref="T:System.String" />.</summary>
|
||||
<param name="value">The <see cref="T:System.String" /> to convert to a <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Inequality(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)">
|
||||
<summary>Checks if two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> have different values.</summary>
|
||||
<param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to compare, or <see langword="null" />.</param>
|
||||
<param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to compare, or <see langword="null" />.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is different from the value of <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Split(System.Char[])">
|
||||
<summary>Splits a string into <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />s that are based on the characters in an array.</summary>
|
||||
<param name="chars">A character array that delimits the substrings in this string, an empty array that
|
||||
contains no delimiters, or null.</param>
|
||||
<returns>An <see cref="T:Microsoft.Extensions.Primitives.StringTokenizer" /> whose elements contain the <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />s from this instance
|
||||
that are delimited by one or more characters in <paramref name="chars" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.StartsWith(System.String,System.StringComparison)">
|
||||
<summary>Checks if the beginning of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> matches the specified <see cref="T:System.String" /> when compared using the specified <paramref name="comparisonType" />.</summary>
|
||||
<param name="text">The <see cref="T:System.String" />to compare.</param>
|
||||
<param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="text" /> is <see langword="null" />.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="text" /> matches the beginning of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Subsegment(System.Int32)">
|
||||
<summary>Retrieves a <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> that represents a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.
|
||||
The <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> starts at the position specified by <paramref name="offset" />.</summary>
|
||||
<param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</param>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||
<paramref name="offset" /> is greater than or equal to <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length" /> or less than zero.</exception>
|
||||
<returns>A <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> that begins at <paramref name="offset" /> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />
|
||||
whose length is the remainder.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Subsegment(System.Int32,System.Int32)">
|
||||
<summary>Retrieves a <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> that represents a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.
|
||||
The <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> starts at the position specified by <paramref name="offset" /> and has the specified <paramref name="length" />.</summary>
|
||||
<param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</param>
|
||||
<param name="length">The number of characters in the substring.</param>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||
<paramref name="offset" /> or <paramref name="length" /> is less than zero, or <paramref name="offset" /> + <paramref name="length" /> is
|
||||
greater than <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length" />.</exception>
|
||||
<returns>A <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> that is equivalent to the substring of length <paramref name="length" /> that begins at <paramref name="offset" /> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /></returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Substring(System.Int32)">
|
||||
<summary>Retrieves a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.
|
||||
The substring starts at the position specified by <paramref name="offset" /> and has the remaining length.</summary>
|
||||
<param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</param>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||
<paramref name="offset" /> is greater than or equal to <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length" /> or less than zero.</exception>
|
||||
<returns>A <see cref="T:System.String" /> that is equivalent to the substring of remaining length that begins at
|
||||
<paramref name="offset" /> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /></returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Substring(System.Int32,System.Int32)">
|
||||
<summary>Retrieves a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.
|
||||
The substring starts at the position specified by <paramref name="offset" /> and has the specified <paramref name="length" />.</summary>
|
||||
<param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</param>
|
||||
<param name="length">The number of characters in the substring.</param>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||
<paramref name="offset" /> or <paramref name="length" /> is less than zero, or <paramref name="offset" /> + <paramref name="length" /> is
|
||||
greater than <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length" />.</exception>
|
||||
<returns>A <see cref="T:System.String" /> that is equivalent to the substring of length <paramref name="length" /> that begins at
|
||||
<paramref name="offset" /> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /></returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.ToString">
|
||||
<summary>Returns the <see cref="T:System.String" /> represented by this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> or <see cref="F:System.String.Empty" /> if the <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> does not contain a value.</summary>
|
||||
<returns>The <see cref="T:System.String" /> represented by this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> or <see cref="F:System.String.Empty" /> if the <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> does not contain a value.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.Trim">
|
||||
<summary>Removes all leading and trailing whitespaces.</summary>
|
||||
<returns>The trimmed <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.TrimEnd">
|
||||
<summary>Removes all trailing whitespaces.</summary>
|
||||
<returns>The trimmed <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegment.TrimStart">
|
||||
<summary>Removes all leading whitespaces.</summary>
|
||||
<returns>The trimmed <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringSegment.Buffer">
|
||||
<summary>Gets the <see cref="T:System.String" /> buffer for this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</summary>
|
||||
<returns>The <see cref="T:System.String" /> buffer for this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringSegment.HasValue">
|
||||
<summary>Gets whether this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> contains a valid value.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> contains a valid value; <see langword="false" /> otherwise.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringSegment.Item(System.Int32)">
|
||||
<summary>Gets the <see cref="T:System.Char" /> at a specified position in the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</summary>
|
||||
<param name="index">The offset into the <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /></param>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||
<paramref name="index" /> is greater than or equal to <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length" /> or less than zero.</exception>
|
||||
<returns>The <see cref="T:System.Char" /> at a specified position.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringSegment.Length">
|
||||
<summary>Gets the length of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</summary>
|
||||
<returns>The length of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringSegment.Offset">
|
||||
<summary>Gets the offset within the buffer for this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</summary>
|
||||
<returns>The offset within the buffer for this <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringSegment.Value">
|
||||
<summary>Gets the value of this segment as a <see cref="T:System.String" />.</summary>
|
||||
<returns>The value of this segment as a <see cref="T:System.String" />.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Primitives.StringSegmentComparer" />
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegmentComparer.Compare(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)">
|
||||
<summary>Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.</summary>
|
||||
<param name="x">The first object to compare.</param>
|
||||
<param name="y">The second object to compare.</param>
|
||||
<returns>A signed integer that indicates the relative values of <paramref name="x" /> and <paramref name="y" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegmentComparer.Equals(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)">
|
||||
<summary>Determines whether the specified objects are equal.</summary>
|
||||
<param name="x">The first object of type <paramref name="T" /> to compare.</param>
|
||||
<param name="y">The second object of type <paramref name="T" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the specified objects are equal; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringSegmentComparer.GetHashCode(Microsoft.Extensions.Primitives.StringSegment)">
|
||||
<summary>Returns a hash code for the specified object.</summary>
|
||||
<param name="obj">The <see cref="T:System.Object" /> for which a hash code is to be returned.</param>
|
||||
<returns>A hash code for the specified object.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringSegmentComparer.Ordinal" />
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringSegmentComparer.OrdinalIgnoreCase" />
|
||||
<member name="T:Microsoft.Extensions.Primitives.StringTokenizer">
|
||||
<summary>Tokenizes a <see cref="T:System.String" /> into <see cref="T:Microsoft.Extensions.Primitives.StringSegment" />s.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringTokenizer.#ctor(Microsoft.Extensions.Primitives.StringSegment,System.Char[])">
|
||||
<summary>Initializes a new instance of <see cref="T:Microsoft.Extensions.Primitives.StringTokenizer" />.</summary>
|
||||
<param name="value">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment" /> to tokenize.</param>
|
||||
<param name="separators">The characters to tokenize by.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringTokenizer.#ctor(System.String,System.Char[])">
|
||||
<summary>Initializes a new instance of <see cref="T:Microsoft.Extensions.Primitives.StringTokenizer" />.</summary>
|
||||
<param name="value">The <see cref="T:System.String" /> to tokenize.</param>
|
||||
<param name="separators">The characters to tokenize by.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringTokenizer.GetEnumerator" />
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringTokenizer.System#Collections#Generic#IEnumerable{Microsoft#Extensions#Primitives#StringSegment}#GetEnumerator">
|
||||
<summary>Returns an enumerator that iterates through the collection.</summary>
|
||||
<returns>An enumerator that can be used to iterate through the collection.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringTokenizer.System#Collections#IEnumerable#GetEnumerator">
|
||||
<summary>Returns an enumerator that iterates through a collection.</summary>
|
||||
<returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator" />
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.#ctor(Microsoft.Extensions.Primitives.StringTokenizer@)">
|
||||
<param name="tokenizer" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.Dispose">
|
||||
<summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.MoveNext">
|
||||
<summary>Advances the enumerator to the next element of the collection.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.Reset">
|
||||
<summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.Current">
|
||||
<summary>Gets the element in the collection at the current position of the enumerator.</summary>
|
||||
<returns>The element in the collection at the current position of the enumerator.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringTokenizer.Enumerator.System#Collections#IEnumerator#Current">
|
||||
<summary>Gets the element in the collection at the current position of the enumerator.</summary>
|
||||
<returns>The element in the collection at the current position of the enumerator.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Primitives.StringValues">
|
||||
<summary>Represents zero/null, one, or many strings in an efficient way.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Primitives.StringValues.Empty">
|
||||
<summary>A readonly instance of the <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> struct whose value is an empty string array.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.#ctor(System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> structure using the specified string.</summary>
|
||||
<param name="value">A string value or <see langword="null" />.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.#ctor(System.String[])">
|
||||
<summary>Initializes a new instance of the <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> structure using the specified array of strings.</summary>
|
||||
<param name="values">A string array.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Concat(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)">
|
||||
<summary>Concatenates two specified instances of <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</summary>
|
||||
<param name="values1">The first <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to concatenate.</param>
|
||||
<param name="values2">The second <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to concatenate.</param>
|
||||
<returns>The concatenation of <paramref name="values1" /> and <paramref name="values2" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Concat(Microsoft.Extensions.Primitives.StringValues@,System.String)">
|
||||
<summary>Concatenates specified instance of <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> with specified <see cref="T:System.String" />.</summary>
|
||||
<param name="values">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to concatenate.</param>
|
||||
<param name="value">The string to concatenate.</param>
|
||||
<returns>The concatenation of <paramref name="values" /> and <paramref name="value" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Concat(System.String,Microsoft.Extensions.Primitives.StringValues@)">
|
||||
<summary>Concatenates specified instance of <see cref="T:System.String" /> with specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</summary>
|
||||
<param name="value">The string to concatenate.</param>
|
||||
<param name="values">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to concatenate.</param>
|
||||
<returns>The concatenation of <paramref name="values" /> and <paramref name="values" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues)">
|
||||
<summary>Determines whether this instance and another specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> object have the same values.</summary>
|
||||
<param name="other">The string to compare to this instance.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="other" /> is the same as the value of this instance; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)">
|
||||
<summary>Determines whether two specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> objects have the same values in the same order.</summary>
|
||||
<param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is the same as the value of <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,System.String)">
|
||||
<summary>Determines whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> and <see cref="T:System.String" /> objects have the same values.</summary>
|
||||
<param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<param name="right">The <see cref="T:System.String" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is the same as the value of <paramref name="right" />; otherwise, <see langword="false" />. If <paramref name="right" /> is <see langword="null" />, the method returns <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,System.String[])">
|
||||
<summary>Determines whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> and string array objects have the same values.</summary>
|
||||
<param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<param name="right">The string array to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is the same as the value of <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(System.Object)">
|
||||
<summary>Determines whether this instance and a specified object have the same value.</summary>
|
||||
<param name="obj">An object to compare with this object.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the current object is equal to <paramref name="obj" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String)">
|
||||
<summary>Determines whether this instance and a specified string have the same value.</summary>
|
||||
<param name="other">The string to compare to this instance.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="other" /> is the same as this instance; otherwise, <see langword="false" />. If <paramref name="other" /> is <see langword="null" />, returns <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String,Microsoft.Extensions.Primitives.StringValues)">
|
||||
<summary>Determines whether the specified <see cref="T:System.String" /> and <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> objects have the same values.</summary>
|
||||
<param name="left">The string to compare.</param>
|
||||
<param name="right">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is the same as the value of <paramref name="right" />; otherwise, <see langword="false" />. If <paramref name="left" /> is <see langword="null" />, the method returns <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String[])">
|
||||
<summary>Determines whether this instance and a specified string array have the same values.</summary>
|
||||
<param name="other">The string array to compare to this instance.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="other" /> is the same as this instance; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String[],Microsoft.Extensions.Primitives.StringValues)">
|
||||
<summary>Determines whether the specified string array and <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> objects have the same values.</summary>
|
||||
<param name="left">The string array to compare.</param>
|
||||
<param name="right">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is the same as the value of <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.GetEnumerator">
|
||||
<summary>Retrieves an object that can iterate through the individual strings in this <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</summary>
|
||||
<returns>An enumerator that can be used to iterate through the <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.GetHashCode" />
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.IsNullOrEmpty(Microsoft.Extensions.Primitives.StringValues)">
|
||||
<summary>Indicates whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> contains no string values.</summary>
|
||||
<param name="value">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to test.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="value">value</paramref> contains a single <see langword="null" /> string or empty array; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)">
|
||||
<summary>Determines whether two specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> have the same values.</summary>
|
||||
<param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is the same as the value of <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,System.Object)">
|
||||
<summary>Determines whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> and <see cref="T:System.Object" />, which must be a <see cref="T:Microsoft.Extensions.Primitives.StringValues" />, <see cref="T:System.String" />, or array of <see cref="T:System.String" />, have the same value.</summary>
|
||||
<param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<param name="right">The <see cref="T:System.Object" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the <paramref name="left" /> object is equal to the <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,System.String)">
|
||||
<param name="left" />
|
||||
<param name="right" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,System.String[])">
|
||||
<param name="left" />
|
||||
<param name="right" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(System.Object,Microsoft.Extensions.Primitives.StringValues)">
|
||||
<summary>Determines whether the specified <see cref="T:System.Object" />, which must be a <see cref="T:Microsoft.Extensions.Primitives.StringValues" />, <see cref="T:System.String" />, or array of <see cref="T:System.String" />, and specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" />, have the same value.</summary>
|
||||
<param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<param name="right">The <see cref="T:System.Object" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the <paramref name="left" /> object is equal to the <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(System.String,Microsoft.Extensions.Primitives.StringValues)">
|
||||
<param name="left" />
|
||||
<param name="right" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(System.String[],Microsoft.Extensions.Primitives.StringValues)">
|
||||
<param name="left" />
|
||||
<param name="right" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(Microsoft.Extensions.Primitives.StringValues)~System.String">
|
||||
<summary>Defines an implicit conversion of a given <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to a string, with multiple values joined as a comma separated string.</summary>
|
||||
<param name="values">A <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to implicitly convert.</param>
|
||||
<returns>Returns <see langword="null" /> where <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> has been initialized from an empty string array or is <see cref="P:Microsoft.Extensions.Primitives.StringValues.Empty" />. Otherwise, it returns the implicit conversion of <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to a string.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(Microsoft.Extensions.Primitives.StringValues)~System.String[]">
|
||||
<summary>Defines an implicit conversion of a given <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to a string array.</summary>
|
||||
<param name="value">A <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to implicitly convert.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(System.String)~Microsoft.Extensions.Primitives.StringValues">
|
||||
<summary>Defines an implicit conversion of a given string to a <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</summary>
|
||||
<param name="value">A string to implicitly convert.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(System.String[])~Microsoft.Extensions.Primitives.StringValues">
|
||||
<summary>Defines an implicit conversion of a given string array to a <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</summary>
|
||||
<param name="values">A string array to implicitly convert.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)">
|
||||
<summary>Determines whether two specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> have different values.</summary>
|
||||
<param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is different to the value of <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,System.Object)">
|
||||
<summary>Determines whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> and <see cref="T:System.Object" />, which must be a <see cref="T:Microsoft.Extensions.Primitives.StringValues" />, <see cref="T:System.String" />, or array of <see cref="T:System.String" />, have different values.</summary>
|
||||
<param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<param name="right">The <see cref="T:System.Object" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the <paramref name="left" /> object is equal to the <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,System.String)">
|
||||
<summary>Determines whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> and <see cref="T:System.String" /> objects have different values.</summary>
|
||||
<param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<param name="right">The <see cref="T:System.String" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is different to the value of <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,System.String[])">
|
||||
<summary>Determines whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> and string array have different values.</summary>
|
||||
<param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<param name="right">The string array to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is different to the value of <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(System.Object,Microsoft.Extensions.Primitives.StringValues)">
|
||||
<summary>Determines whether the specified <see cref="T:System.Object" /> and <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> object have the same values.</summary>
|
||||
<param name="left">The <see cref="T:System.Object" /> to compare.</param>
|
||||
<param name="right">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the <paramref name="left" /> object is equal to the <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(System.String,Microsoft.Extensions.Primitives.StringValues)">
|
||||
<summary>Determines whether the specified <see cref="T:System.String" /> and <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> objects have different values.</summary>
|
||||
<param name="left">The string to compare.</param>
|
||||
<param name="right">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is different to the value of <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(System.String[],Microsoft.Extensions.Primitives.StringValues)">
|
||||
<summary>Determines whether the specified string array and <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> have different values.</summary>
|
||||
<param name="left">The string array to compare.</param>
|
||||
<param name="right">The <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> to compare.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the value of <paramref name="left" /> is different to the value of <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection{System#String}#Add(System.String)">
|
||||
<summary>Adds an item to the collection.</summary>
|
||||
<param name="item">The object to add to the collection.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection{System#String}#Clear">
|
||||
<summary>Removes all items from the collection.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection{System#String}#Contains(System.String)">
|
||||
<summary>Determines whether a string is in the <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</summary>
|
||||
<param name="item">The string to locate in the <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:Microsoft.Extensions.Primitives.StringValues" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection{System#String}#CopyTo(System.String[],System.Int32)">
|
||||
<summary>Copies the entire <see cref="T:Microsoft.Extensions.Primitives.StringValues" />to a string array, starting at the specified index of the target array.</summary>
|
||||
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
|
||||
<param name="arrayIndex">The zero-based index in the destination array at which copying begins.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection{System#String}#Remove(System.String)">
|
||||
<summary>Removes the first occurrence of a specific object from the collection.</summary>
|
||||
<param name="item">The object to remove from the collection.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="item" /> was successfully removed from the collection; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> is not found in the original collection.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IEnumerable{System#String}#GetEnumerator">
|
||||
<summary>Returns an enumerator that iterates through the collection.</summary>
|
||||
<returns>An enumerator that can be used to iterate through the collection.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList{System#String}#IndexOf(System.String)">
|
||||
<summary>Returns the zero-based index of the first occurrence of an item in the <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</summary>
|
||||
<param name="item">The string to locate in the <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</param>
|
||||
<returns>the zero-based index of the first occurrence of <paramref name="item" /> within the <see cref="T:Microsoft.Extensions.Primitives.StringValues" />, if found; otherwise, –1.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList{System#String}#Insert(System.Int32,System.String)">
|
||||
<summary>Inserts an item to the <see cref="T:System.Collections.Generic.IList`1" /> at the specified index.</summary>
|
||||
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
|
||||
<param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1" />.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList{System#String}#RemoveAt(System.Int32)">
|
||||
<summary>Removes the <see cref="T:System.Collections.Generic.IList`1" /> item at the specified index.</summary>
|
||||
<param name="index">The zero-based index of the item to remove.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#IEnumerable#GetEnumerator">
|
||||
<summary>Returns an enumerator that iterates through a collection.</summary>
|
||||
<returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.ToArray">
|
||||
<summary>Creates a string array from the current <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> object.</summary>
|
||||
<returns>A string array represented by this instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.ToString">
|
||||
<summary>Converts the value of the current <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> object to its equivalent string representation, with multiple values joined as a comma separated string.</summary>
|
||||
<returns>A string representation of the value of the current <see cref="T:Microsoft.Extensions.Primitives.StringValues" /> object.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringValues.Count">
|
||||
<summary>Gets the number of string elements contained in this <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</summary>
|
||||
<returns>The number of string elements contained in this <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringValues.Item(System.Int32)">
|
||||
<summary>Gets the string at index.</summary>
|
||||
<param name="index">The zero-based index of the element to get.</param>
|
||||
<returns>The string at the specified index.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection{System#String}#IsReadOnly">
|
||||
<summary>Gets a value indicating whether the collection is read-only.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList{System#String}#Item(System.Int32)">
|
||||
<summary>Gets the <see cref="T:System.String" /> at index.</summary>
|
||||
<param name="index">The zero-based index of the element to get.</param>
|
||||
<returns>The string at the specified index.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Primitives.StringValues.Enumerator">
|
||||
<summary>Enumerates the string values of a <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Enumerator.#ctor(Microsoft.Extensions.Primitives.StringValues@)">
|
||||
<param name="values" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Enumerator.Dispose">
|
||||
<summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Enumerator.MoveNext">
|
||||
<summary>Advances the enumerator to the next element of the collection.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Primitives.StringValues.Enumerator.System#Collections#IEnumerator#Reset">
|
||||
<summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringValues.Enumerator.Current">
|
||||
<summary>Gets the element in the collection at the current position of the enumerator.</summary>
|
||||
<returns>The element in the collection at the current position of the enumerator.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Primitives.StringValues.Enumerator.System#Collections#IEnumerator#Current">
|
||||
<summary>Gets the element in the collection at the current position of the enumerator.</summary>
|
||||
<returns>The element in the collection at the current position of the enumerator.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
TBFTests/bin/Debug/Microsoft.TestPlatform.AdapterUtilities.dll
Normal file
BIN
TBFTests/bin/Debug/Microsoft.TestPlatform.AdapterUtilities.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
TBFTests/bin/Debug/Moq.dll
Normal file
BIN
TBFTests/bin/Debug/Moq.dll
Normal file
Binary file not shown.
8543
TBFTests/bin/Debug/Moq.xml
Normal file
8543
TBFTests/bin/Debug/Moq.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
TBFTests/bin/Debug/MySql.Data.dll
Normal file
BIN
TBFTests/bin/Debug/MySql.Data.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/NHibernate.dll
Normal file
BIN
TBFTests/bin/Debug/NHibernate.dll
Normal file
Binary file not shown.
43816
TBFTests/bin/Debug/NHibernate.xml
Normal file
43816
TBFTests/bin/Debug/NHibernate.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
TBFTests/bin/Debug/Newtonsoft.Json.dll
Normal file
BIN
TBFTests/bin/Debug/Newtonsoft.Json.dll
Normal file
Binary file not shown.
11172
TBFTests/bin/Debug/Newtonsoft.Json.xml
Normal file
11172
TBFTests/bin/Debug/Newtonsoft.Json.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
TBFTests/bin/Debug/Oracle.DataAccess.dll
Normal file
BIN
TBFTests/bin/Debug/Oracle.DataAccess.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/Pictures/forward_dir_left.jpg
Normal file
BIN
TBFTests/bin/Debug/Pictures/forward_dir_left.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 117 KiB |
BIN
TBFTests/bin/Debug/Pictures/forward_dir_right.jpg
Normal file
BIN
TBFTests/bin/Debug/Pictures/forward_dir_right.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 121 KiB |
BIN
TBFTests/bin/Debug/Pictures/reversed_dir_left.jpg
Normal file
BIN
TBFTests/bin/Debug/Pictures/reversed_dir_left.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
BIN
TBFTests/bin/Debug/Pictures/reversed_dir_right.jpg
Normal file
BIN
TBFTests/bin/Debug/Pictures/reversed_dir_right.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
BIN
TBFTests/bin/Debug/Renci.SshNet.dll
Normal file
BIN
TBFTests/bin/Debug/Renci.SshNet.dll
Normal file
Binary file not shown.
18882
TBFTests/bin/Debug/Renci.SshNet.xml
Normal file
18882
TBFTests/bin/Debug/Renci.SshNet.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
TBFTests/bin/Debug/RestClient.dll
Normal file
BIN
TBFTests/bin/Debug/RestClient.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/RestClient.pdb
Normal file
BIN
TBFTests/bin/Debug/RestClient.pdb
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/Results.dll
Normal file
BIN
TBFTests/bin/Debug/Results.dll
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/Results.pdb
Normal file
BIN
TBFTests/bin/Debug/Results.pdb
Normal file
Binary file not shown.
BIN
TBFTests/bin/Debug/SampleConfig/SQLite.db
Normal file
BIN
TBFTests/bin/Debug/SampleConfig/SQLite.db
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user