mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
New: NzbDrone service to automatically report errors and episode parse issues.
This commit is contained in:
parent
ea86ce2fcb
commit
174f765ec9
140 changed files with 10774 additions and 1694 deletions
BIN
packages/AutoMapper.2.0.0/AutoMapper.2.0.0.nupkg
vendored
Normal file
BIN
packages/AutoMapper.2.0.0/AutoMapper.2.0.0.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/AutoMapper.2.0.0/lib/net40-client/AutoMapper.dll
vendored
Normal file
BIN
packages/AutoMapper.2.0.0/lib/net40-client/AutoMapper.dll
vendored
Normal file
Binary file not shown.
15
packages/AutoMapper.2.0.0/lib/net40-client/AutoMapper.xml
vendored
Normal file
15
packages/AutoMapper.2.0.0/lib/net40-client/AutoMapper.xml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>AutoMapper</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:AutoMapper.MappingEngine.ConversionVisitor">
|
||||
<summary>
|
||||
This expression visitor will replace an input parameter by another one
|
||||
|
||||
see http://stackoverflow.com/questions/4601844/expression-tree-copy-or-convert
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
671
packages/AutoMapper.2.0.0/lib/sl4/AutoMapper.XML
vendored
Normal file
671
packages/AutoMapper.2.0.0/lib/sl4/AutoMapper.XML
vendored
Normal file
|
@ -0,0 +1,671 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>AutoMapper</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:AutoMapper.MappingEngine.ConversionVisitor">
|
||||
<summary>
|
||||
This expression visitor will replace an input parameter by another one
|
||||
|
||||
see http://stackoverflow.com/questions/4601844/expression-tree-copy-or-convert
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:TvdP.Collections.ConcurrentDictionaryKey`2">
|
||||
<summary>
|
||||
Search key structure for <see cref="T:TvdP.Collections.ConcurrentDictionary`2"/>
|
||||
</summary>
|
||||
<typeparam name="TKey">Type of the key.</typeparam>
|
||||
<typeparam name="TValue">Type of the value.</typeparam>
|
||||
</member>
|
||||
<member name="T:TvdP.Collections.ConcurrentDictionary`2">
|
||||
<summary>
|
||||
A Concurrent <see cref="T:System.Collections.Generic.IDictionary`2"/> implementation.
|
||||
</summary>
|
||||
<typeparam name="TKey">Type of the keys.</typeparam>
|
||||
<typeparam name="TValue">Type of the values.</typeparam>
|
||||
<remarks>
|
||||
This class is threadsafe and highly concurrent. This means that multiple threads can do lookup and insert operations
|
||||
on this dictionary simultaneously.
|
||||
It is not guaranteed that collisions will not occur. The dictionary is partitioned in segments. A segment contains
|
||||
a set of items based on a hash of those items. The more segments there are and the beter the hash, the fewer collisions will occur.
|
||||
This means that a nearly empty ConcurrentDictionary is not as concurrent as one containing many items.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="T:TvdP.Collections.ConcurrentHashtable`2">
|
||||
<summary>
|
||||
Base class for concurrent hashtable implementations
|
||||
</summary>
|
||||
<typeparam name="TStored">Type of the items stored in the hashtable.</typeparam>
|
||||
<typeparam name="TSearch">Type of the key to search with.</typeparam>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.#ctor">
|
||||
<summary>
|
||||
Constructor (protected)
|
||||
</summary>
|
||||
<remarks>Use Initialize method after construction.</remarks>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.Initialize">
|
||||
<summary>
|
||||
Initialize the newly created ConcurrentHashtable. Invoke in final (sealed) constructor
|
||||
or Create method.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.CreateSegmentRange(System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Create a segment range
|
||||
</summary>
|
||||
<param name="segmentCount">Number of segments in range.</param>
|
||||
<param name="initialSegmentSize">Number of slots allocated initialy in each segment.</param>
|
||||
<returns>The created <see cref="T:TvdP.Collections.Segmentrange`2"/> instance.</returns>
|
||||
</member>
|
||||
<member name="F:TvdP.Collections.ConcurrentHashtable`2._NewRange">
|
||||
<summary>
|
||||
While adjusting the segmentation, _NewRange will hold a reference to the new range of segments.
|
||||
when the adjustment is complete this reference will be copied to _CurrentRange.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:TvdP.Collections.ConcurrentHashtable`2._CurrentRange">
|
||||
<summary>
|
||||
Will hold the most current reange of segments. When busy adjusting the segmentation, this
|
||||
field will hold a reference to the old range.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:TvdP.Collections.ConcurrentHashtable`2._SwitchPoint">
|
||||
<summary>
|
||||
While adjusting the segmentation this field will hold a boundary.
|
||||
Clients accessing items with a key hash value below this boundary (unsigned compared)
|
||||
will access _NewRange. The others will access _CurrentRange
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.GetItemHashCode(`0@)">
|
||||
<summary>
|
||||
Get a hashcode for given storeable item.
|
||||
</summary>
|
||||
<param name="item">Reference to the item to get a hash value for.</param>
|
||||
<returns>The hash value as an <see cref="T:System.UInt32"/>.</returns>
|
||||
<remarks>
|
||||
The hash returned should be properly randomized hash. The standard GetItemHashCode methods are usually not good enough.
|
||||
A storeable item and a matching search key should return the same hash code.
|
||||
So the statement <code>ItemEqualsItem(storeableItem, searchKey) ? GetItemHashCode(storeableItem) == GetItemHashCode(searchKey) : true </code> should always be true;
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.GetKeyHashCode(`1@)">
|
||||
<summary>
|
||||
Get a hashcode for given search key.
|
||||
</summary>
|
||||
<param name="key">Reference to the key to get a hash value for.</param>
|
||||
<returns>The hash value as an <see cref="T:System.UInt32"/>.</returns>
|
||||
<remarks>
|
||||
The hash returned should be properly randomized hash. The standard GetItemHashCode methods are usually not good enough.
|
||||
A storeable item and a matching search key should return the same hash code.
|
||||
So the statement <code>ItemEqualsItem(storeableItem, searchKey) ? GetItemHashCode(storeableItem) == GetItemHashCode(searchKey) : true </code> should always be true;
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.ItemEqualsKey(`0@,`1@)">
|
||||
<summary>
|
||||
Compares a storeable item to a search key. Should return true if they match.
|
||||
</summary>
|
||||
<param name="item">Reference to the storeable item to compare.</param>
|
||||
<param name="key">Reference to the search key to compare.</param>
|
||||
<returns>True if the storeable item and search key match; false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.ItemEqualsItem(`0@,`0@)">
|
||||
<summary>
|
||||
Compares two storeable items for equality.
|
||||
</summary>
|
||||
<param name="item1">Reference to the first storeable item to compare.</param>
|
||||
<param name="item2">Reference to the second storeable item to compare.</param>
|
||||
<returns>True if the two soreable items should be regarded as equal.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.IsEmpty(`0@)">
|
||||
<summary>
|
||||
Indicates if a specific item reference contains a valid item.
|
||||
</summary>
|
||||
<param name="item">The storeable item reference to check.</param>
|
||||
<returns>True if the reference doesn't refer to a valid item; false otherwise.</returns>
|
||||
<remarks>The statement <code>IsEmpty(default(TStoredI))</code> should always be true.</remarks>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.GetKeyType(`0@)">
|
||||
<summary>
|
||||
Returns the type of the key value or object.
|
||||
</summary>
|
||||
<param name="item">The stored item to get the type of the key for.</param>
|
||||
<returns>The actual type of the key or null if it can not be determined.</returns>
|
||||
<remarks>
|
||||
Used for diagnostics purposes.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.GetSegment(System.UInt32)">
|
||||
<summary>
|
||||
Gets a segment out of either _NewRange or _CurrentRange based on the hash value.
|
||||
</summary>
|
||||
<param name="hash"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.GetSegmentLockedForWriting(System.UInt32)">
|
||||
<summary>
|
||||
Gets a LOCKED segment out of either _NewRange or _CurrentRange based on the hash value.
|
||||
Unlock needs to be called on this segment before it can be used by other clients.
|
||||
</summary>
|
||||
<param name="hash"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.GetSegmentLockedForReading(System.UInt32)">
|
||||
<summary>
|
||||
Gets a LOCKED segment out of either _NewRange or _CurrentRange based on the hash value.
|
||||
Unlock needs to be called on this segment before it can be used by other clients.
|
||||
</summary>
|
||||
<param name="hash"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.FindItem(`1@,`0@)">
|
||||
<summary>
|
||||
Finds an item in the table collection that maches the given searchKey
|
||||
</summary>
|
||||
<param name="searchKey">The key to the item.</param>
|
||||
<param name="item">Out reference to a field that will receive the found item.</param>
|
||||
<returns>A boolean that will be true if an item has been found and false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.GetOldestItem(`0@,`0@)">
|
||||
<summary>
|
||||
Looks for an existing item in the table contents using an alternative copy. If it can be found it will be returned.
|
||||
If not then the alternative copy will be added to the table contents and the alternative copy will be returned.
|
||||
</summary>
|
||||
<param name="searchKey">A copy to search an already existing instance with</param>
|
||||
<param name="item">Out reference to receive the found item or the alternative copy</param>
|
||||
<returns>A boolean that will be true if an existing copy was found and false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.ReplaceItem(`1@,`0@,`0@,System.Func{`0,System.Boolean})">
|
||||
<summary>
|
||||
Replaces and existing item
|
||||
</summary>
|
||||
<param name="newItem"></param>
|
||||
<param name="oldItem"></param>
|
||||
<param name="sanction"></param>
|
||||
<returns>true is the existing item was successfully replaced.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.InsertItem(`0@,`0@)">
|
||||
<summary>
|
||||
Inserts an item in the table contents possibly replacing an existing item.
|
||||
</summary>
|
||||
<param name="searchKey">The item to insert in the table</param>
|
||||
<param name="replacedItem">Out reference to a field that will receive any possibly replaced item.</param>
|
||||
<returns>A boolean that will be true if an existing copy was found and replaced and false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.RemoveItem(`1@,`0@)">
|
||||
<summary>
|
||||
Removes an item from the table contents.
|
||||
</summary>
|
||||
<param name="searchKey">The key to find the item with.</param>
|
||||
<param name="removedItem">Out reference to a field that will receive the found and removed item.</param>
|
||||
<returns>A boolean that will be rue if an item was found and removed and false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.EnumerateAmorphLockedSegments(System.Boolean)">
|
||||
<summary>
|
||||
Enumerates all segments in _CurrentRange and locking them before yielding them and resleasing the lock afterwards
|
||||
The order in which the segments are returned is undefined.
|
||||
Lock SyncRoot before using this enumerable.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.Clear">
|
||||
<summary>
|
||||
Removes all items from the collection.
|
||||
Aquires a lock on SyncRoot before it does it's thing.
|
||||
When this method returns and multiple threads have access to this table it
|
||||
is not guaranteed that the table is actually empty.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.SegmentationAdjustmentNeeded">
|
||||
<summary>
|
||||
Determines if a segmentation adjustment is needed.
|
||||
</summary>
|
||||
<returns>True</returns>
|
||||
</member>
|
||||
<member name="F:TvdP.Collections.ConcurrentHashtable`2._AssessSegmentationPending">
|
||||
<summary>
|
||||
Bool as int (for interlocked functions) that is true if a Segmentation assesment is pending.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:TvdP.Collections.ConcurrentHashtable`2._AllocatedSpace">
|
||||
<summary>
|
||||
The total allocated number of item slots. Filled with nonempty items or not.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.EffectTotalAllocatedSpace(System.Int32)">
|
||||
<summary>
|
||||
When a segment resizes it uses this method to inform the hashtable of the change in allocated space.
|
||||
</summary>
|
||||
<param name="effect"></param>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.ScheduleMaintenance">
|
||||
<summary>
|
||||
Schedule a call to the AssessSegmentation() method.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.AssessSegmentation(System.Object)">
|
||||
<summary>
|
||||
Checks if segmentation needs to be adjusted and if so performs the adjustment.
|
||||
</summary>
|
||||
<param name="dummy"></param>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.AssessSegmentation">
|
||||
<summary>
|
||||
This method is called when a re-segmentation is expected to be needed. It checks if it actually is needed and, if so, performs the re-segementation.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentHashtable`2.SetSegmentation(System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Adjusts the segmentation to the new segment count
|
||||
</summary>
|
||||
<param name="newSegmentCount">The new number of segments to use. This must be a power of 2.</param>
|
||||
<param name="segmentSize">The number of item slots to reserve in each segment.</param>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.ConcurrentHashtable`2.SyncRoot">
|
||||
<summary>
|
||||
Returns an object that serves as a lock for range operations
|
||||
</summary>
|
||||
<remarks>
|
||||
Clients use this primarily for enumerating over the Tables contents.
|
||||
Locking doesn't guarantee that the contents don't change, but prevents operations that would
|
||||
disrupt the enumeration process.
|
||||
Operations that use this lock:
|
||||
Count, Clear, DisposeGarbage and AssessSegmentation.
|
||||
Keeping this lock will prevent the table from re-segmenting.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.ConcurrentHashtable`2.Items">
|
||||
<summary>
|
||||
Gets an IEnumerable to iterate over all items in all segments.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
<remarks>
|
||||
A lock should be aquired and held on SyncRoot while this IEnumerable is being used.
|
||||
The order in which the items are returned is undetermined.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.ConcurrentHashtable`2.Count">
|
||||
<summary>
|
||||
Returns a count of all items in teh collection. This may not be
|
||||
aqurate when multiple threads are accessing this table.
|
||||
Aquires a lock on SyncRoot before it does it's thing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.ConcurrentHashtable`2.MinSegments">
|
||||
<summary>
|
||||
Gives the minimum number of segments a hashtable can contain. This should be 1 or more and always a power of 2.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.ConcurrentHashtable`2.MinSegmentAllocatedSpace">
|
||||
<summary>
|
||||
Gives the minimum number of allocated item slots per segment. This should be 1 or more, always a power of 2
|
||||
and less than 1/2 of MeanSegmentAllocatedSpace.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.ConcurrentHashtable`2.MeanSegmentAllocatedSpace">
|
||||
<summary>
|
||||
Gives the prefered number of allocated item slots per segment. This should be 4 or more and always a power of 2.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.#ctor">
|
||||
<summary>
|
||||
Constructs a <see cref="T:TvdP.Collections.ConcurrentDictionary`2"/> instance using the default <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> to compare keys.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.#ctor(System.Collections.Generic.IEqualityComparer{`0})">
|
||||
<summary>
|
||||
Constructs a <see cref="T:TvdP.Collections.ConcurrentDictionary`2"/> instance using the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> to compare keys.
|
||||
</summary>
|
||||
<param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> tp compare keys with.</param>
|
||||
<exception cref="T:System.ArgumentNullException"><paramref name="comparer"/> is null.</exception>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.GetItemHashCode(System.Nullable{System.Collections.Generic.KeyValuePair{`0,`1}}@)">
|
||||
<summary>
|
||||
Get a hashcode for given storeable item.
|
||||
</summary>
|
||||
<param name="item">Reference to the item to get a hash value for.</param>
|
||||
<returns>The hash value as an <see cref="T:System.UInt32"/>.</returns>
|
||||
<remarks>
|
||||
The hash returned should be properly randomized hash. The standard GetItemHashCode methods are usually not good enough.
|
||||
A storeable item and a matching search key should return the same hash code.
|
||||
So the statement <code>ItemEqualsItem(storeableItem, searchKey) ? GetItemHashCode(storeableItem) == GetItemHashCode(searchKey) : true </code> should always be true;
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.GetKeyHashCode(TvdP.Collections.ConcurrentDictionaryKey{`0,`1}@)">
|
||||
<summary>
|
||||
Get a hashcode for given search key.
|
||||
</summary>
|
||||
<param name="key">Reference to the key to get a hash value for.</param>
|
||||
<returns>The hash value as an <see cref="T:System.UInt32"/>.</returns>
|
||||
<remarks>
|
||||
The hash returned should be properly randomized hash. The standard GetItemHashCode methods are usually not good enough.
|
||||
A storeable item and a matching search key should return the same hash code.
|
||||
So the statement <code>ItemEqualsItem(storeableItem, searchKey) ? GetItemHashCode(storeableItem) == GetItemHashCode(searchKey) : true </code> should always be true;
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.ItemEqualsKey(System.Nullable{System.Collections.Generic.KeyValuePair{`0,`1}}@,TvdP.Collections.ConcurrentDictionaryKey{`0,`1}@)">
|
||||
<summary>
|
||||
Compares a storeable item to a search key. Should return true if they match.
|
||||
</summary>
|
||||
<param name="item">Reference to the storeable item to compare.</param>
|
||||
<param name="key">Reference to the search key to compare.</param>
|
||||
<returns>True if the storeable item and search key match; false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.ItemEqualsItem(System.Nullable{System.Collections.Generic.KeyValuePair{`0,`1}}@,System.Nullable{System.Collections.Generic.KeyValuePair{`0,`1}}@)">
|
||||
<summary>
|
||||
Compares two storeable items for equality.
|
||||
</summary>
|
||||
<param name="item1">Reference to the first storeable item to compare.</param>
|
||||
<param name="item2">Reference to the second storeable item to compare.</param>
|
||||
<returns>True if the two soreable items should be regarded as equal.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.IsEmpty(System.Nullable{System.Collections.Generic.KeyValuePair{`0,`1}}@)">
|
||||
<summary>
|
||||
Indicates if a specific item reference contains a valid item.
|
||||
</summary>
|
||||
<param name="item">The storeable item reference to check.</param>
|
||||
<returns>True if the reference doesn't refer to a valid item; false otherwise.</returns>
|
||||
<remarks>The statement <code>IsEmpty(default(TStoredI))</code> should always be true.</remarks>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Add(`0,`1)">
|
||||
<summary>
|
||||
Adds an element with the provided key and value to the dictionary.
|
||||
</summary>
|
||||
<param name="key">The object to use as the key of the element to add.</param>
|
||||
<param name="value">The object to use as the value of the element to add.</param>
|
||||
<exception cref="T:System.ArgumentException">An element with the same key already exists in the dictionary.</exception>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.ContainsKey(`0)">
|
||||
<summary>
|
||||
Determines whether the dictionary
|
||||
contains an element with the specified key.
|
||||
</summary>
|
||||
<param name="key">The key to locate in the dictionary.</param>
|
||||
<returns>true if the dictionary contains
|
||||
an element with the key; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Remove(`0)">
|
||||
<summary>
|
||||
Removes the element with the specified key from the dictionary.
|
||||
</summary>
|
||||
<param name="key">The key of the element to remove.</param>
|
||||
<returns>true if the element is successfully removed; otherwise, false. This method
|
||||
also returns false if key was not found in the original dictionary.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.TryGetValue(`0,`1@)">
|
||||
<summary>
|
||||
Gets the value associated with the specified key.
|
||||
</summary>
|
||||
<param name="key">The key whose value to get.</param>
|
||||
<param name="value">
|
||||
When this method returns, the value associated with the specified key, if
|
||||
the key is found; otherwise, the default value for the type of the value
|
||||
parameter. This parameter is passed uninitialized.
|
||||
</param>
|
||||
<returns>
|
||||
true if the dictionary contains an element with the specified key; otherwise, false.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
|
||||
<summary>
|
||||
Adds an association to the dictionary.
|
||||
</summary>
|
||||
<param name="item">A <see cref="T:System.Collections.Generic.KeyValuePair`2"/> that represents the association to add.</param>
|
||||
<exception cref="T:System.ArgumentException">An association with an equal key already exists in the dicitonary.</exception>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.Clear">
|
||||
<summary>
|
||||
Removes all items from the dictionary.
|
||||
</summary>
|
||||
<remarks>WHen working with multiple threads, that each can add items to this dictionary, it is not guaranteed that the dictionary will be empty when this method returns.</remarks>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
|
||||
<summary>
|
||||
Determines whether the specified association exists in the dictionary.
|
||||
</summary>
|
||||
<param name="item">The key-value association to search fo in the dicionary.</param>
|
||||
<returns>True if item is found in the dictionary; otherwise, false.</returns>
|
||||
<remarks>
|
||||
This method compares both key and value. It uses the default equality comparer to compare values.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
|
||||
<summary>
|
||||
Copies all associations of the dictionary 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 associations
|
||||
copied from <see cref="T:TvdP.Collections.ConcurrentDictionaryKey`2"/>. 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="arrayIndex"/> is equal to or greater than the length of <paramref name="array"/>.</exception>
|
||||
<exception cref="T:System.ArgumentException">The number of associations to be copied
|
||||
is greater than the available space from <paramref name="arrayIndex"/> to the end of the destination
|
||||
<paramref name="array"/>.</exception>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
|
||||
<summary>
|
||||
Removes the specified association from the <see cref="T:TvdP.Collections.ConcurrentDictionaryKey`2"/>, comparing both key and value.
|
||||
</summary>
|
||||
<param name="item">A <see cref="T:System.Collections.Generic.KeyValuePair`2"/> representing the association to remove.</param>
|
||||
<returns>true if the association was successfully removed from the <see cref="T:TvdP.Collections.ConcurrentDictionaryKey`2"/>;
|
||||
otherwise, false. This method also returns false if the association is not found in
|
||||
the original <see cref="T:TvdP.Collections.ConcurrentDictionaryKey`2"/>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through all associations in the <see cref="T:TvdP.Collections.ConcurrentDictionaryKey`2"/> at the moment of invocation.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the associations.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.ConcurrentDictionary`2.System#Collections#IEnumerable#GetEnumerator">
|
||||
<summary>
|
||||
Returns an enumerator that iterates through all associations in the <see cref="T:TvdP.Collections.ConcurrentDictionaryKey`2"/> at the moment of invocation.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Collections.IEnumerator"/> that can be used to iterate through the associations.</returns>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.ConcurrentDictionary`2.Comparer">
|
||||
<summary>
|
||||
Gives the <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> of TKey that is used to compare keys.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.ConcurrentDictionary`2.Keys">
|
||||
<summary>
|
||||
Gets an <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of
|
||||
the dictionary.
|
||||
</summary>
|
||||
<returns>An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of the dictionary.</returns>
|
||||
<remarks>This property takes a snapshot of the current keys collection of the dictionary at the moment of invocation.</remarks>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.ConcurrentDictionary`2.Values">
|
||||
<summary>
|
||||
Gets an <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in
|
||||
the dictionary.
|
||||
</summary>
|
||||
<returns>
|
||||
An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in the dictionary.
|
||||
</returns>
|
||||
<remarks>This property takes a snapshot of the current keys collection of the dictionary at the moment of invocation.</remarks>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.ConcurrentDictionary`2.Item(`0)">
|
||||
<summary>
|
||||
Gets or sets the value associated with the specified key.
|
||||
</summary>
|
||||
<param name="key">The key of the value to get or set.</param>
|
||||
<returns>The value associated with the specified key. If the specified key is not found, a get operation throws a KeyNotFoundException, and a set operation creates a new element with the specified key.</returns>
|
||||
<remarks>
|
||||
When working with multiple threads, that can each potentialy remove the searched for item, a <see cref="T:System.Collections.Generic.KeyNotFoundException"/> can always be expected.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.ConcurrentDictionary`2.Count">
|
||||
<summary>
|
||||
Gets the number of elements contained in the <see cref="T:TvdP.Collections.ConcurrentDictionaryKey`2"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.ConcurrentDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#IsReadOnly">
|
||||
<summary>
|
||||
Gets a value indicating whether the <see cref="T:TvdP.Collections.ConcurrentDictionaryKey`2"/> is read-only, which is always false.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:TvdP.Collections.Segment`2">
|
||||
<summary>
|
||||
A 'single writer - multi reader' threaded segment in a hashtable.
|
||||
</summary>
|
||||
<typeparam name="TStored"></typeparam>
|
||||
<typeparam name="TSearch"></typeparam>
|
||||
<remarks>
|
||||
Though each segment can be accessed by 1 writer thread simultaneously, the hashtable becomes concurrent
|
||||
for writing by containing many segments so that collisions are rare. The table will be fully concurrent
|
||||
for read operations as far as they are not colliding with write operations.
|
||||
Each segment is itself a small hashtable that can grow and shrink individualy. This prevents blocking of
|
||||
the entire hashtable when growing or shrinking is needed. Because each segment is relatively small (depending on
|
||||
the quality of the hash) resizing of the individual segments should not take much time.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.Segment`2.Initialize(System.Int32)">
|
||||
<summary>
|
||||
Initialize the segment.
|
||||
</summary>
|
||||
<param name="initialSize"></param>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.Segment`2.Welcome(TvdP.Collections.ConcurrentHashtable{`0,`1})">
|
||||
<summary>
|
||||
When segment gets introduced into hashtable then its allocated space should be added to the
|
||||
total allocated space.
|
||||
Single threaded access or locking is needed
|
||||
</summary>
|
||||
<param name="traits"></param>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.Segment`2.Bye(TvdP.Collections.ConcurrentHashtable{`0,`1})">
|
||||
<summary>
|
||||
When segment gets removed from hashtable then its allocated space should be subtracted to the
|
||||
total allocated space.
|
||||
Single threaded access or locking is needed
|
||||
</summary>
|
||||
<param name="traits"></param>
|
||||
</member>
|
||||
<member name="F:TvdP.Collections.Segment`2._List">
|
||||
<summary>
|
||||
Array with 'slots'. Each slot can be filled or empty.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.Segment`2.InsertItemAtIndex(System.UInt32,System.UInt32,`0,TvdP.Collections.ConcurrentHashtable{`0,`1})">
|
||||
<summary>
|
||||
Inserts an item into a *not empty* spot given by position i. It moves items forward until an empty spot is found.
|
||||
</summary>
|
||||
<param name="mask"></param>
|
||||
<param name="i"></param>
|
||||
<param name="itemCopy"></param>
|
||||
<param name="traits"></param>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.Segment`2.FindItem(`1@,`0@,TvdP.Collections.ConcurrentHashtable{`0,`1})">
|
||||
<summary>
|
||||
Find item in segment.
|
||||
</summary>
|
||||
<param name="key">Reference to the search key to use.</param>
|
||||
<param name="item">Out reference to store the found item in.</param>
|
||||
<param name="traits">Object that tells this segment how to treat items and keys.</param>
|
||||
<returns>True if an item could be found, otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.Segment`2.GetOldestItem(`0@,`0@,TvdP.Collections.ConcurrentHashtable{`0,`1})">
|
||||
<summary>
|
||||
Find an existing item or, if it can't be found, insert a new item.
|
||||
</summary>
|
||||
<param name="key">Reference to the item that will be inserted if an existing item can't be found. It will also be used to search with.</param>
|
||||
<param name="item">Out reference to store the found item or, if it can not be found, the new inserted item.</param>
|
||||
<param name="traits">Object that tells this segment how to treat items and keys.</param>
|
||||
<returns>True if an existing item could be found, otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.Segment`2.InsertItem(`0@,`0@,TvdP.Collections.ConcurrentHashtable{`0,`1})">
|
||||
<summary>
|
||||
Inserts an item in the segment, possibly replacing an equal existing item.
|
||||
</summary>
|
||||
<param name="key">A reference to the item to insert.</param>
|
||||
<param name="item">An out reference where any replaced item will be written to, if no item was replaced the new item will be written to this reference.</param>
|
||||
<param name="traits">Object that tells this segment how to treat items and keys.</param>
|
||||
<returns>True if an existing item could be found and is replaced, otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.Segment`2.RemoveItem(`1@,`0@,TvdP.Collections.ConcurrentHashtable{`0,`1})">
|
||||
<summary>
|
||||
Removes an item from the segment.
|
||||
</summary>
|
||||
<param name="key">A reference to the key to search with.</param>
|
||||
<param name="item">An out reference where the removed item will be stored or default(<typeparamref name="TStored"/>) if no item to remove can be found.</param>
|
||||
<param name="traits">Object that tells this segment how to treat items and keys.</param>
|
||||
<returns>True if an item could be found and is removed, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.Segment`2.GetNextItem(System.Int32,`0@,TvdP.Collections.ConcurrentHashtable{`0,`1})">
|
||||
<summary>
|
||||
Iterate over items in the segment.
|
||||
</summary>
|
||||
<param name="beyond">Position beyond which the next filled slot will be found and the item in that slot returned. (Starting with -1)</param>
|
||||
<param name="item">Out reference where the next item will be stored or default if the end of the segment is reached.</param>
|
||||
<param name="traits">Object that tells this segment how to treat items and keys.</param>
|
||||
<returns>The index position the next item has been found or -1 otherwise.</returns>
|
||||
</member>
|
||||
<member name="F:TvdP.Collections.Segment`2._Count">
|
||||
<summary>
|
||||
Total numer of filled slots in _List.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Collections.Segment`2.Trim(TvdP.Collections.ConcurrentHashtable{`0,`1})">
|
||||
<summary>
|
||||
Remove any excess allocated space
|
||||
</summary>
|
||||
<param name="traits"></param>
|
||||
</member>
|
||||
<member name="P:TvdP.Collections.Segment`2.IsAlive">
|
||||
<summary>
|
||||
Boolean value indicating if this segment has not been trashed yet.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:TvdP.Threading.TinyReaderWriterLock">
|
||||
<summary>
|
||||
Tiny spin lock that allows multiple readers simultanously and 1 writer exclusively
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Threading.TinyReaderWriterLock.ReleaseForReading">
|
||||
<summary>
|
||||
Release a reader lock
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Threading.TinyReaderWriterLock.ReleaseForWriting">
|
||||
<summary>
|
||||
Release a writer lock
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Threading.TinyReaderWriterLock.LockForReading">
|
||||
<summary>
|
||||
Aquire a reader lock. Wait until lock is aquired.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Threading.TinyReaderWriterLock.LockForReading(System.Boolean)">
|
||||
<summary>
|
||||
Aquire a reader lock.
|
||||
</summary>
|
||||
<param name="wait">True if to wait until lock aquired, False to return immediately.</param>
|
||||
<returns>Boolean indicating if lock was successfuly aquired.</returns>
|
||||
</member>
|
||||
<member name="M:TvdP.Threading.TinyReaderWriterLock.LockForWriting">
|
||||
<summary>
|
||||
Aquire a writer lock. Wait until lock is aquired.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:TvdP.Threading.TinyReaderWriterLock.LockForWriting(System.Boolean)">
|
||||
<summary>
|
||||
Aquire a writer lock.
|
||||
</summary>
|
||||
<param name="wait">True if to wait until lock aquired, False to return immediately.</param>
|
||||
<returns>Boolean indicating if lock was successfuly aquired.</returns>
|
||||
</member>
|
||||
<member name="T:System.SerializableAttribute">
|
||||
<summary>
|
||||
Attempts to replicate the Desktop CLR.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
BIN
packages/AutoMapper.2.0.0/lib/sl4/AutoMapper.dll
vendored
Normal file
BIN
packages/AutoMapper.2.0.0/lib/sl4/AutoMapper.dll
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
packages/Newtonsoft.Json.4.0.6/Newtonsoft.Json.4.0.6.nupkg
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/Newtonsoft.Json.4.0.6.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Newtonsoft.Json.4.0.6/lib/net20/Newtonsoft.Json.dll
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/lib/net20/Newtonsoft.Json.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Newtonsoft.Json.4.0.6/lib/net20/Newtonsoft.Json.pdb
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/lib/net20/Newtonsoft.Json.pdb
vendored
Normal file
Binary file not shown.
|
@ -42,6 +42,12 @@
|
|||
</summary>
|
||||
<returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -211,6 +217,12 @@
|
|||
</summary>
|
||||
<param name="stream">The stream.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
</summary>
|
||||
<param name="reader">The reader.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
|
@ -219,6 +231,14 @@
|
|||
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
|
||||
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
</summary>
|
||||
<param name="reader">The reader.</param>
|
||||
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
|
||||
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -233,6 +253,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream.
|
||||
|
@ -645,6 +671,12 @@
|
|||
</summary>
|
||||
<param name="stream">The stream.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
|
||||
</summary>
|
||||
<param name="writer">The writer.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
|
||||
<summary>
|
||||
Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
|
||||
|
@ -3570,6 +3602,12 @@
|
|||
</summary>
|
||||
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -3623,7 +3661,7 @@
|
|||
</member>
|
||||
<member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
|
||||
<summary>
|
||||
Gets The Common Language Runtime (CLR) type for the current Json token.
|
||||
Gets the Common Language Runtime (CLR) type for the current Json token.
|
||||
</summary>
|
||||
<value></value>
|
||||
</member>
|
||||
|
@ -3878,6 +3916,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonTextReader.Close">
|
||||
<summary>
|
||||
Changes the state to closed.
|
||||
|
@ -5664,6 +5708,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream.
|
||||
|
@ -6632,6 +6682,12 @@
|
|||
</summary>
|
||||
<value>The name of the property.</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
|
||||
<summary>
|
||||
Gets or sets the type that declared this property.
|
||||
</summary>
|
||||
<value>The type that declared this property.</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
|
||||
<summary>
|
||||
Gets or sets the order of serialization and deserialization of a member.
|
||||
|
@ -7304,23 +7360,6 @@
|
|||
Always include the .NET type name when serializing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert``1(System.Object)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert``1(System.Object,System.Globalization.CultureInfo)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
|
@ -7330,29 +7369,6 @@
|
|||
<param name="targetType">The type to convert the value to.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert``1(System.Object,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert``1(System.Object,System.Globalization.CultureInfo,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
|
@ -7365,25 +7381,6 @@
|
|||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast``1(System.Object)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert or cast the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<returns>The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast``1(System.Object,System.Globalization.CultureInfo)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert or cast the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<returns>The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
|
@ -7397,71 +7394,12 @@
|
|||
is returned if assignable to the target type.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast``1(System.Object,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast``1(System.Object,System.Globalization.CultureInfo,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="targetType">The type to convert the value to.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.Parse``1(System.String)">
|
||||
<summary>
|
||||
Parses the specified enum member name, returning it's value.
|
||||
</summary>
|
||||
<param name="enumMemberName">Name of the enum member.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.Parse``1(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Parses the specified enum member name, returning it's value.
|
||||
</summary>
|
||||
<param name="enumMemberName">Name of the enum member.</param>
|
||||
<param name="ignoreCase">If set to <c>true</c> ignore case.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``2">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
|
@ -7469,14 +7407,6 @@
|
|||
<param name="enumType">The enum type to get names and values for.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetMaximumValue``1(System.Type)">
|
||||
<summary>
|
||||
Gets the maximum valid value of an Enum type. Flags enums are ORed.
|
||||
</summary>
|
||||
<typeparam name="TEnumType">The type of the returned value. Must be assignable from the enum's underlying value type.</typeparam>
|
||||
<param name="enumType">The enum type to get the maximum value for.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.JsonToken">
|
||||
<summary>
|
||||
Specifies the type of Json token.
|
||||
|
@ -7519,7 +7449,7 @@
|
|||
</member>
|
||||
<member name="F:Newtonsoft.Json.JsonToken.Integer">
|
||||
<summary>
|
||||
An interger.
|
||||
An integer.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Newtonsoft.Json.JsonToken.Float">
|
||||
|
@ -7634,15 +7564,6 @@
|
|||
Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty(System.Collections.ICollection)">
|
||||
<summary>
|
||||
Determines whether the collection is null or empty.
|
||||
</summary>
|
||||
<param name="collection">The collection.</param>
|
||||
<returns>
|
||||
<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
|
||||
<summary>
|
||||
Determines whether the collection is null or empty.
|
||||
|
@ -7652,43 +7573,6 @@
|
|||
<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmptyOrDefault``1(System.Collections.Generic.IList{``0})">
|
||||
<summary>
|
||||
Determines whether the collection is null, empty or its contents are uninitialized values.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<returns>
|
||||
<c>true</c> if the collection is null or empty or its contents are uninitialized values; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.Slice``1(System.Collections.Generic.IList{``0},System.Nullable{System.Int32},System.Nullable{System.Int32})">
|
||||
<summary>
|
||||
Makes a slice of the specified list in between the start and end indexes.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<param name="start">The start index.</param>
|
||||
<param name="end">The end index.</param>
|
||||
<returns>A slice of the list.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.Slice``1(System.Collections.Generic.IList{``0},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})">
|
||||
<summary>
|
||||
Makes a slice of the specified list in between the start and end indexes,
|
||||
getting every so many items based upon the step.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<param name="start">The start index.</param>
|
||||
<param name="end">The end index.</param>
|
||||
<param name="step">The step.</param>
|
||||
<returns>A slice of the list.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.GroupBy``2(System.Collections.Generic.ICollection{``1},System.Func{``1,``0})">
|
||||
<summary>
|
||||
Group the collection using a function which returns the key.
|
||||
</summary>
|
||||
<param name="source">The source collection to group.</param>
|
||||
<param name="keySelector">The key selector.</param>
|
||||
<returns>A Dictionary with each key relating to a list of objects in a list grouped under it.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
|
||||
<summary>
|
||||
Adds the elements of the specified collection to the specified generic IList.
|
||||
|
@ -7696,15 +7580,6 @@
|
|||
<param name="initial">The list to add to.</param>
|
||||
<param name="collection">The collection of elements to add.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0)">
|
||||
<summary>
|
||||
Returns the index of the first occurrence in a sequence by using the default equality comparer.
|
||||
</summary>
|
||||
<typeparam name="TSource">The type of the elements of source.</typeparam>
|
||||
<param name="list">A sequence in which to locate a value.</param>
|
||||
<param name="value">The object to locate in the sequence</param>
|
||||
<returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
|
||||
<summary>
|
||||
Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
|
||||
|
@ -7722,13 +7597,6 @@
|
|||
<param name="type">The type.</param>
|
||||
<returns>The type of the typed collection's items.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.ItemsUnitializedValue``1(System.Collections.Generic.IList{``0})">
|
||||
<summary>
|
||||
Tests whether the list's items are their unitialized value.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<returns>Whether the list's items are their unitialized value</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
|
||||
<summary>
|
||||
Gets the member's underlying type.
|
||||
|
@ -7791,15 +7659,6 @@
|
|||
<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.ContainsWhiteSpace(System.String)">
|
||||
<summary>
|
||||
Determines whether the string contains white space.
|
||||
</summary>
|
||||
<param name="s">The string to test for white space.</param>
|
||||
<returns>
|
||||
<c>true</c> if the string contains white space; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
|
||||
<summary>
|
||||
Determines whether the string is all white space. Empty string will return false.
|
||||
|
@ -7809,45 +7668,6 @@
|
|||
<c>true</c> if the string is all white space; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.EnsureEndsWith(System.String,System.String)">
|
||||
<summary>
|
||||
Ensures the target string ends with the specified string.
|
||||
</summary>
|
||||
<param name="target">The target.</param>
|
||||
<param name="value">The value.</param>
|
||||
<returns>The target string with the value string at the end.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.IfNotNullOrEmpty(System.String,System.Action{System.String})">
|
||||
<summary>
|
||||
Perform an action if the string is not null or empty.
|
||||
</summary>
|
||||
<param name="value">The value.</param>
|
||||
<param name="action">The action to perform.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.Indent(System.String,System.Int32)">
|
||||
<summary>
|
||||
Indents the specified string.
|
||||
</summary>
|
||||
<param name="s">The string to indent.</param>
|
||||
<param name="indentation">The number of characters to indent by.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.Indent(System.String,System.Int32,System.Char)">
|
||||
<summary>
|
||||
Indents the specified string.
|
||||
</summary>
|
||||
<param name="s">The string to indent.</param>
|
||||
<param name="indentation">The number of characters to indent by.</param>
|
||||
<param name="indentChar">The indent character.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.NumberLines(System.String)">
|
||||
<summary>
|
||||
Numbers the lines.
|
||||
</summary>
|
||||
<param name="s">The string to number.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
|
||||
<summary>
|
||||
Nulls an empty string.
|
BIN
packages/Newtonsoft.Json.4.0.6/lib/net35/Newtonsoft.Json.dll
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/lib/net35/Newtonsoft.Json.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Newtonsoft.Json.4.0.6/lib/net35/Newtonsoft.Json.pdb
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/lib/net35/Newtonsoft.Json.pdb
vendored
Normal file
Binary file not shown.
|
@ -25,6 +25,12 @@
|
|||
</summary>
|
||||
<returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -200,6 +206,12 @@
|
|||
</summary>
|
||||
<param name="stream">The stream.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
</summary>
|
||||
<param name="reader">The reader.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
|
@ -208,6 +220,14 @@
|
|||
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
|
||||
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
</summary>
|
||||
<param name="reader">The reader.</param>
|
||||
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
|
||||
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -222,6 +242,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
|
@ -654,6 +680,12 @@
|
|||
</summary>
|
||||
<param name="stream">The stream.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
|
||||
</summary>
|
||||
<param name="writer">The writer.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
|
||||
<summary>
|
||||
Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
|
||||
|
@ -1117,46 +1149,6 @@
|
|||
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
|
||||
<summary>
|
||||
Converts an ExpandoObject to and from JSON.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
|
||||
<summary>
|
||||
Writes the JSON representation of the object.
|
||||
</summary>
|
||||
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
|
||||
<param name="value">The value.</param>
|
||||
<param name="serializer">The calling serializer.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
|
||||
<summary>
|
||||
Reads the JSON representation of the object.
|
||||
</summary>
|
||||
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
|
||||
<param name="objectType">Type of the object.</param>
|
||||
<param name="existingValue">The existing value of object being read.</param>
|
||||
<param name="serializer">The calling serializer.</param>
|
||||
<returns>The object value.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)">
|
||||
<summary>
|
||||
Determines whether this instance can convert the specified object type.
|
||||
</summary>
|
||||
<param name="objectType">Type of the object.</param>
|
||||
<returns>
|
||||
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite">
|
||||
<summary>
|
||||
Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
|
||||
</summary>
|
||||
<value>
|
||||
<c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
|
||||
</value>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
|
||||
<summary>
|
||||
Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
|
||||
|
@ -1321,6 +1313,96 @@
|
|||
Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
|
||||
<summary>
|
||||
Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String,System.Type)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
|
||||
</summary>
|
||||
<param name="name">The name.</param>
|
||||
<param name="propertyType">Type of the property.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, returns whether resetting an object changes its value.
|
||||
</summary>
|
||||
<returns>
|
||||
true if resetting the component changes its value; otherwise, false.
|
||||
</returns>
|
||||
<param name="component">The component to test for reset capability.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, gets the current value of the property on a component.
|
||||
</summary>
|
||||
<returns>
|
||||
The value of a property for a given component.
|
||||
</returns>
|
||||
<param name="component">The component with the property for which to retrieve the value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, resets the value for this property of the component to the default value.
|
||||
</summary>
|
||||
<param name="component">The component with the property value that is to be reset to the default value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, sets the value of the component to a different value.
|
||||
</summary>
|
||||
<param name="component">The component with the property value that is to be set.
|
||||
</param><param name="value">The new value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the property should be persisted; otherwise, false.
|
||||
</returns>
|
||||
<param name="component">The component with the property to be examined for persistence.
|
||||
</param>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
|
||||
<summary>
|
||||
When overridden in a derived class, gets the type of the component this property is bound to.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Type"/> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/> methods are invoked, the object specified might be an instance of this type.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
|
||||
<summary>
|
||||
When overridden in a derived class, gets a value indicating whether this property is read-only.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the property is read-only; otherwise, false.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
|
||||
<summary>
|
||||
When overridden in a derived class, gets the type of the property.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Type"/> that represents the type of the property.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
|
||||
<summary>
|
||||
Gets the hash code for the name of the member.
|
||||
</summary>
|
||||
<value></value>
|
||||
<returns>
|
||||
The hash code for the name of the member.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Linq.JRaw">
|
||||
<summary>
|
||||
Represents a raw JSON string.
|
||||
|
@ -1925,24 +2007,6 @@
|
|||
<param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no token is found.</param>
|
||||
<returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that matches the object path.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)">
|
||||
<summary>
|
||||
Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
|
||||
</summary>
|
||||
<param name="parameter">The expression tree representation of the runtime value.</param>
|
||||
<returns>
|
||||
The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
|
||||
<summary>
|
||||
Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
|
||||
</summary>
|
||||
<param name="parameter">The expression tree representation of the runtime value.</param>
|
||||
<returns>
|
||||
The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
|
||||
<summary>
|
||||
Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
|
||||
|
@ -2163,15 +2227,6 @@
|
|||
A <see cref="T:System.String"/> that represents this instance.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)">
|
||||
<summary>
|
||||
Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
|
||||
</summary>
|
||||
<param name="parameter">The expression tree representation of the runtime value.</param>
|
||||
<returns>
|
||||
The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
|
||||
<summary>
|
||||
Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
|
||||
|
@ -2251,7 +2306,7 @@
|
|||
The property must be defined in JSON and cannot be a null value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract">
|
||||
<member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
|
||||
<summary>
|
||||
Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
|
||||
</summary>
|
||||
|
@ -2327,29 +2382,6 @@
|
|||
</summary>
|
||||
<value>The method called when an error is thrown during the serialization of the object.</value>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class.
|
||||
</summary>
|
||||
<param name="underlyingType">The underlying type for the contract.</param>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties">
|
||||
<summary>
|
||||
Gets the object's properties.
|
||||
</summary>
|
||||
<value>The object's properties.</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver">
|
||||
<summary>
|
||||
Gets or sets the property name resolver.
|
||||
</summary>
|
||||
<value>The property name resolver.</value>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
|
||||
<summary>
|
||||
Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
|
||||
|
@ -2452,96 +2484,6 @@
|
|||
</summary>
|
||||
<value>The error context.</value>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
|
||||
<summary>
|
||||
Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String,System.Type)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
|
||||
</summary>
|
||||
<param name="name">The name.</param>
|
||||
<param name="propertyType">Type of the property.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, returns whether resetting an object changes its value.
|
||||
</summary>
|
||||
<returns>
|
||||
true if resetting the component changes its value; otherwise, false.
|
||||
</returns>
|
||||
<param name="component">The component to test for reset capability.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, gets the current value of the property on a component.
|
||||
</summary>
|
||||
<returns>
|
||||
The value of a property for a given component.
|
||||
</returns>
|
||||
<param name="component">The component with the property for which to retrieve the value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, resets the value for this property of the component to the default value.
|
||||
</summary>
|
||||
<param name="component">The component with the property value that is to be reset to the default value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, sets the value of the component to a different value.
|
||||
</summary>
|
||||
<param name="component">The component with the property value that is to be set.
|
||||
</param><param name="value">The new value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the property should be persisted; otherwise, false.
|
||||
</returns>
|
||||
<param name="component">The component with the property to be examined for persistence.
|
||||
</param>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
|
||||
<summary>
|
||||
When overridden in a derived class, gets the type of the component this property is bound to.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Type"/> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/> methods are invoked, the object specified might be an instance of this type.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
|
||||
<summary>
|
||||
When overridden in a derived class, gets a value indicating whether this property is read-only.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the property is read-only; otherwise, false.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
|
||||
<summary>
|
||||
When overridden in a derived class, gets the type of the property.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Type"/> that represents the type of the property.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
|
||||
<summary>
|
||||
Gets the hash code for the name of the member.
|
||||
</summary>
|
||||
<value></value>
|
||||
<returns>
|
||||
The hash code for the name of the member.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
|
||||
<summary>
|
||||
Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
|
||||
|
@ -2862,6 +2804,12 @@
|
|||
</summary>
|
||||
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -2921,7 +2869,7 @@
|
|||
</member>
|
||||
<member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
|
||||
<summary>
|
||||
Gets The Common Language Runtime (CLR) type for the current Json token.
|
||||
Gets the Common Language Runtime (CLR) type for the current Json token.
|
||||
</summary>
|
||||
<value></value>
|
||||
</member>
|
||||
|
@ -3176,6 +3124,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
|
@ -4388,12 +4342,6 @@
|
|||
</summary>
|
||||
<param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
|
||||
<summary>
|
||||
Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event.
|
||||
</summary>
|
||||
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JContainer.Children">
|
||||
<summary>
|
||||
Returns a collection of the child tokens of this token, in document order.
|
||||
|
@ -4456,11 +4404,6 @@
|
|||
Occurs before an item is added to the collection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged">
|
||||
<summary>
|
||||
Occurs when the items list of the collection has changed, or the collection is reset.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
|
||||
<summary>
|
||||
Gets the container's children tokens.
|
||||
|
@ -4847,15 +4790,6 @@
|
|||
An <see cref="T:System.Object"/> that represents the owner of the specified property.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)">
|
||||
<summary>
|
||||
Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
|
||||
</summary>
|
||||
<param name="parameter">The expression tree representation of the runtime value.</param>
|
||||
<returns>
|
||||
The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
|
||||
<summary>
|
||||
Gets the container's children tokens.
|
||||
|
@ -5063,6 +4997,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
|
@ -5695,13 +5635,6 @@
|
|||
<param name="objectType">Type of the object.</param>
|
||||
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)">
|
||||
<summary>
|
||||
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.
|
||||
</summary>
|
||||
<param name="objectType">Type of the object.</param>
|
||||
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
|
||||
<summary>
|
||||
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
|
||||
|
@ -5796,14 +5729,6 @@
|
|||
The type of the object the formatter creates a new instance of.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)">
|
||||
<summary>
|
||||
When overridden in a derived class, controls the binding of a serialized object to a type.
|
||||
</summary>
|
||||
<param name="serializedType">The type of the object the formatter creates a new instance of.</param>
|
||||
<param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object. </param>
|
||||
<param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object. </param>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Serialization.ErrorContext">
|
||||
<summary>
|
||||
Provides information surrounding an error.
|
||||
|
@ -5880,6 +5805,12 @@
|
|||
</summary>
|
||||
<value>The name of the property.</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
|
||||
<summary>
|
||||
Gets or sets the type that declared this property.
|
||||
</summary>
|
||||
<value>The type that declared this property.</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
|
||||
<summary>
|
||||
Gets or sets the order of serialization and deserialization of a member.
|
||||
|
@ -6476,14 +6407,6 @@
|
|||
</summary>
|
||||
<value>The parametrized constructor.</value>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Serialization.JsonSerializerInternalWriter.SerializeDynamic(Newtonsoft.Json.JsonWriter,System.Dynamic.IDynamicMetaObjectProvider,Newtonsoft.Json.Serialization.JsonDynamicContract)">
|
||||
<summary>
|
||||
Serializes the dynamic.
|
||||
</summary>
|
||||
<param name="writer">The writer.</param>
|
||||
<param name="value">The value.</param>
|
||||
<param name="contract">The contract.</param>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
|
||||
<summary>
|
||||
Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
|
||||
|
@ -6525,32 +6448,6 @@
|
|||
When applied to a method, specifies that the method is called when an error occurs serializing an object.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
|
||||
<summary>
|
||||
Helper method for generating a MetaObject which calls a
|
||||
specific method on Dynamic that returns a result
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
|
||||
<summary>
|
||||
Helper method for generating a MetaObject which calls a
|
||||
specific method on Dynamic, but uses one of the arguments for
|
||||
the result.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
|
||||
<summary>
|
||||
Helper method for generating a MetaObject which calls a
|
||||
specific method on Dynamic, but uses one of the arguments for
|
||||
the result.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions">
|
||||
<summary>
|
||||
Returns a Restrictions object which includes our current restrictions merged
|
||||
with a restriction limiting our type
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
|
||||
<summary>
|
||||
Represents a method that constructs an object.
|
||||
|
@ -6586,23 +6483,6 @@
|
|||
Always include the .NET type name when serializing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert``1(System.Object)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert``1(System.Object,System.Globalization.CultureInfo)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
|
@ -6612,29 +6492,6 @@
|
|||
<param name="targetType">The type to convert the value to.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert``1(System.Object,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert``1(System.Object,System.Globalization.CultureInfo,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
|
@ -6647,25 +6504,6 @@
|
|||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast``1(System.Object)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert or cast the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<returns>The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast``1(System.Object,System.Globalization.CultureInfo)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert or cast the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<returns>The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
|
@ -6679,71 +6517,12 @@
|
|||
is returned if assignable to the target type.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast``1(System.Object,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast``1(System.Object,System.Globalization.CultureInfo,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="targetType">The type to convert the value to.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.Parse``1(System.String)">
|
||||
<summary>
|
||||
Parses the specified enum member name, returning it's value.
|
||||
</summary>
|
||||
<param name="enumMemberName">Name of the enum member.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.Parse``1(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Parses the specified enum member name, returning it's value.
|
||||
</summary>
|
||||
<param name="enumMemberName">Name of the enum member.</param>
|
||||
<param name="ignoreCase">If set to <c>true</c> ignore case.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``2">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
|
@ -6751,14 +6530,6 @@
|
|||
<param name="enumType">The enum type to get names and values for.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetMaximumValue``1(System.Type)">
|
||||
<summary>
|
||||
Gets the maximum valid value of an Enum type. Flags enums are ORed.
|
||||
</summary>
|
||||
<typeparam name="TEnumType">The type of the returned value. Must be assignable from the enum's underlying value type.</typeparam>
|
||||
<param name="enumType">The enum type to get the maximum value for.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.JsonToken">
|
||||
<summary>
|
||||
Specifies the type of Json token.
|
||||
|
@ -6801,7 +6572,7 @@
|
|||
</member>
|
||||
<member name="F:Newtonsoft.Json.JsonToken.Integer">
|
||||
<summary>
|
||||
An interger.
|
||||
An integer.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Newtonsoft.Json.JsonToken.Float">
|
||||
|
@ -6916,15 +6687,6 @@
|
|||
Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty(System.Collections.ICollection)">
|
||||
<summary>
|
||||
Determines whether the collection is null or empty.
|
||||
</summary>
|
||||
<param name="collection">The collection.</param>
|
||||
<returns>
|
||||
<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
|
||||
<summary>
|
||||
Determines whether the collection is null or empty.
|
||||
|
@ -6934,43 +6696,6 @@
|
|||
<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmptyOrDefault``1(System.Collections.Generic.IList{``0})">
|
||||
<summary>
|
||||
Determines whether the collection is null, empty or its contents are uninitialized values.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<returns>
|
||||
<c>true</c> if the collection is null or empty or its contents are uninitialized values; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.Slice``1(System.Collections.Generic.IList{``0},System.Nullable{System.Int32},System.Nullable{System.Int32})">
|
||||
<summary>
|
||||
Makes a slice of the specified list in between the start and end indexes.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<param name="start">The start index.</param>
|
||||
<param name="end">The end index.</param>
|
||||
<returns>A slice of the list.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.Slice``1(System.Collections.Generic.IList{``0},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})">
|
||||
<summary>
|
||||
Makes a slice of the specified list in between the start and end indexes,
|
||||
getting every so many items based upon the step.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<param name="start">The start index.</param>
|
||||
<param name="end">The end index.</param>
|
||||
<param name="step">The step.</param>
|
||||
<returns>A slice of the list.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.GroupBy``2(System.Collections.Generic.ICollection{``1},System.Func{``1,``0})">
|
||||
<summary>
|
||||
Group the collection using a function which returns the key.
|
||||
</summary>
|
||||
<param name="source">The source collection to group.</param>
|
||||
<param name="keySelector">The key selector.</param>
|
||||
<returns>A Dictionary with each key relating to a list of objects in a list grouped under it.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
|
||||
<summary>
|
||||
Adds the elements of the specified collection to the specified generic IList.
|
||||
|
@ -6978,15 +6703,6 @@
|
|||
<param name="initial">The list to add to.</param>
|
||||
<param name="collection">The collection of elements to add.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0)">
|
||||
<summary>
|
||||
Returns the index of the first occurrence in a sequence by using the default equality comparer.
|
||||
</summary>
|
||||
<typeparam name="TSource">The type of the elements of source.</typeparam>
|
||||
<param name="list">A sequence in which to locate a value.</param>
|
||||
<param name="value">The object to locate in the sequence</param>
|
||||
<returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
|
||||
<summary>
|
||||
Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
|
||||
|
@ -7004,13 +6720,6 @@
|
|||
<param name="type">The type.</param>
|
||||
<returns>The type of the typed collection's items.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.ItemsUnitializedValue``1(System.Collections.Generic.IList{``0})">
|
||||
<summary>
|
||||
Tests whether the list's items are their unitialized value.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<returns>Whether the list's items are their unitialized value</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
|
||||
<summary>
|
||||
Gets the member's underlying type.
|
||||
|
@ -7073,15 +6782,6 @@
|
|||
<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.ContainsWhiteSpace(System.String)">
|
||||
<summary>
|
||||
Determines whether the string contains white space.
|
||||
</summary>
|
||||
<param name="s">The string to test for white space.</param>
|
||||
<returns>
|
||||
<c>true</c> if the string contains white space; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
|
||||
<summary>
|
||||
Determines whether the string is all white space. Empty string will return false.
|
||||
|
@ -7091,45 +6791,6 @@
|
|||
<c>true</c> if the string is all white space; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.EnsureEndsWith(System.String,System.String)">
|
||||
<summary>
|
||||
Ensures the target string ends with the specified string.
|
||||
</summary>
|
||||
<param name="target">The target.</param>
|
||||
<param name="value">The value.</param>
|
||||
<returns>The target string with the value string at the end.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.IfNotNullOrEmpty(System.String,System.Action{System.String})">
|
||||
<summary>
|
||||
Perform an action if the string is not null or empty.
|
||||
</summary>
|
||||
<param name="value">The value.</param>
|
||||
<param name="action">The action to perform.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.Indent(System.String,System.Int32)">
|
||||
<summary>
|
||||
Indents the specified string.
|
||||
</summary>
|
||||
<param name="s">The string to indent.</param>
|
||||
<param name="indentation">The number of characters to indent by.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.Indent(System.String,System.Int32,System.Char)">
|
||||
<summary>
|
||||
Indents the specified string.
|
||||
</summary>
|
||||
<param name="s">The string to indent.</param>
|
||||
<param name="indentation">The number of characters to indent by.</param>
|
||||
<param name="indentChar">The indent character.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.NumberLines(System.String)">
|
||||
<summary>
|
||||
Numbers the lines.
|
||||
</summary>
|
||||
<param name="s">The string to number.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
|
||||
<summary>
|
||||
Nulls an empty string.
|
BIN
packages/Newtonsoft.Json.4.0.6/lib/net40/Newtonsoft.Json.dll
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/lib/net40/Newtonsoft.Json.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Newtonsoft.Json.4.0.6/lib/net40/Newtonsoft.Json.pdb
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/lib/net40/Newtonsoft.Json.pdb
vendored
Normal file
Binary file not shown.
|
@ -25,6 +25,12 @@
|
|||
</summary>
|
||||
<returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -200,6 +206,12 @@
|
|||
</summary>
|
||||
<param name="stream">The stream.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
</summary>
|
||||
<param name="reader">The reader.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
|
@ -208,6 +220,14 @@
|
|||
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
|
||||
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
</summary>
|
||||
<param name="reader">The reader.</param>
|
||||
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
|
||||
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -222,6 +242,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
|
@ -654,6 +680,12 @@
|
|||
</summary>
|
||||
<param name="stream">The stream.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
|
||||
</summary>
|
||||
<param name="writer">The writer.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
|
||||
<summary>
|
||||
Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
|
||||
|
@ -1117,6 +1149,46 @@
|
|||
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
|
||||
<summary>
|
||||
Converts an ExpandoObject to and from JSON.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
|
||||
<summary>
|
||||
Writes the JSON representation of the object.
|
||||
</summary>
|
||||
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
|
||||
<param name="value">The value.</param>
|
||||
<param name="serializer">The calling serializer.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
|
||||
<summary>
|
||||
Reads the JSON representation of the object.
|
||||
</summary>
|
||||
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
|
||||
<param name="objectType">Type of the object.</param>
|
||||
<param name="existingValue">The existing value of object being read.</param>
|
||||
<param name="serializer">The calling serializer.</param>
|
||||
<returns>The object value.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)">
|
||||
<summary>
|
||||
Determines whether this instance can convert the specified object type.
|
||||
</summary>
|
||||
<param name="objectType">Type of the object.</param>
|
||||
<returns>
|
||||
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite">
|
||||
<summary>
|
||||
Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
|
||||
</summary>
|
||||
<value>
|
||||
<c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
|
||||
</value>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
|
||||
<summary>
|
||||
Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
|
||||
|
@ -1281,96 +1353,6 @@
|
|||
Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
|
||||
<summary>
|
||||
Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String,System.Type)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
|
||||
</summary>
|
||||
<param name="name">The name.</param>
|
||||
<param name="propertyType">Type of the property.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, returns whether resetting an object changes its value.
|
||||
</summary>
|
||||
<returns>
|
||||
true if resetting the component changes its value; otherwise, false.
|
||||
</returns>
|
||||
<param name="component">The component to test for reset capability.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, gets the current value of the property on a component.
|
||||
</summary>
|
||||
<returns>
|
||||
The value of a property for a given component.
|
||||
</returns>
|
||||
<param name="component">The component with the property for which to retrieve the value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, resets the value for this property of the component to the default value.
|
||||
</summary>
|
||||
<param name="component">The component with the property value that is to be reset to the default value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, sets the value of the component to a different value.
|
||||
</summary>
|
||||
<param name="component">The component with the property value that is to be set.
|
||||
</param><param name="value">The new value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the property should be persisted; otherwise, false.
|
||||
</returns>
|
||||
<param name="component">The component with the property to be examined for persistence.
|
||||
</param>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
|
||||
<summary>
|
||||
When overridden in a derived class, gets the type of the component this property is bound to.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Type"/> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/> methods are invoked, the object specified might be an instance of this type.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
|
||||
<summary>
|
||||
When overridden in a derived class, gets a value indicating whether this property is read-only.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the property is read-only; otherwise, false.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
|
||||
<summary>
|
||||
When overridden in a derived class, gets the type of the property.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Type"/> that represents the type of the property.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
|
||||
<summary>
|
||||
Gets the hash code for the name of the member.
|
||||
</summary>
|
||||
<value></value>
|
||||
<returns>
|
||||
The hash code for the name of the member.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Linq.JRaw">
|
||||
<summary>
|
||||
Represents a raw JSON string.
|
||||
|
@ -1975,6 +1957,24 @@
|
|||
<param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no token is found.</param>
|
||||
<returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that matches the object path.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)">
|
||||
<summary>
|
||||
Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
|
||||
</summary>
|
||||
<param name="parameter">The expression tree representation of the runtime value.</param>
|
||||
<returns>
|
||||
The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
|
||||
<summary>
|
||||
Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
|
||||
</summary>
|
||||
<param name="parameter">The expression tree representation of the runtime value.</param>
|
||||
<returns>
|
||||
The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
|
||||
<summary>
|
||||
Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
|
||||
|
@ -2195,6 +2195,15 @@
|
|||
A <see cref="T:System.String"/> that represents this instance.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)">
|
||||
<summary>
|
||||
Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
|
||||
</summary>
|
||||
<param name="parameter">The expression tree representation of the runtime value.</param>
|
||||
<returns>
|
||||
The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
|
||||
<summary>
|
||||
Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
|
||||
|
@ -2274,7 +2283,7 @@
|
|||
The property must be defined in JSON and cannot be a null value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
|
||||
<member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract">
|
||||
<summary>
|
||||
Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
|
||||
</summary>
|
||||
|
@ -2350,6 +2359,29 @@
|
|||
</summary>
|
||||
<value>The method called when an error is thrown during the serialization of the object.</value>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class.
|
||||
</summary>
|
||||
<param name="underlyingType">The underlying type for the contract.</param>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties">
|
||||
<summary>
|
||||
Gets the object's properties.
|
||||
</summary>
|
||||
<value>The object's properties.</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver">
|
||||
<summary>
|
||||
Gets or sets the property name resolver.
|
||||
</summary>
|
||||
<value>The property name resolver.</value>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
|
||||
<summary>
|
||||
Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
|
||||
|
@ -2452,6 +2484,96 @@
|
|||
</summary>
|
||||
<value>The error context.</value>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
|
||||
<summary>
|
||||
Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String,System.Type)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
|
||||
</summary>
|
||||
<param name="name">The name.</param>
|
||||
<param name="propertyType">Type of the property.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, returns whether resetting an object changes its value.
|
||||
</summary>
|
||||
<returns>
|
||||
true if resetting the component changes its value; otherwise, false.
|
||||
</returns>
|
||||
<param name="component">The component to test for reset capability.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, gets the current value of the property on a component.
|
||||
</summary>
|
||||
<returns>
|
||||
The value of a property for a given component.
|
||||
</returns>
|
||||
<param name="component">The component with the property for which to retrieve the value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, resets the value for this property of the component to the default value.
|
||||
</summary>
|
||||
<param name="component">The component with the property value that is to be reset to the default value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, sets the value of the component to a different value.
|
||||
</summary>
|
||||
<param name="component">The component with the property value that is to be set.
|
||||
</param><param name="value">The new value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
|
||||
<summary>
|
||||
When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the property should be persisted; otherwise, false.
|
||||
</returns>
|
||||
<param name="component">The component with the property to be examined for persistence.
|
||||
</param>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
|
||||
<summary>
|
||||
When overridden in a derived class, gets the type of the component this property is bound to.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Type"/> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/> methods are invoked, the object specified might be an instance of this type.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
|
||||
<summary>
|
||||
When overridden in a derived class, gets a value indicating whether this property is read-only.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the property is read-only; otherwise, false.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
|
||||
<summary>
|
||||
When overridden in a derived class, gets the type of the property.
|
||||
</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Type"/> that represents the type of the property.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
|
||||
<summary>
|
||||
Gets the hash code for the name of the member.
|
||||
</summary>
|
||||
<value></value>
|
||||
<returns>
|
||||
The hash code for the name of the member.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
|
||||
<summary>
|
||||
Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
|
||||
|
@ -2772,6 +2894,12 @@
|
|||
</summary>
|
||||
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -2831,7 +2959,7 @@
|
|||
</member>
|
||||
<member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
|
||||
<summary>
|
||||
Gets The Common Language Runtime (CLR) type for the current Json token.
|
||||
Gets the Common Language Runtime (CLR) type for the current Json token.
|
||||
</summary>
|
||||
<value></value>
|
||||
</member>
|
||||
|
@ -3086,6 +3214,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
|
@ -4298,6 +4432,12 @@
|
|||
</summary>
|
||||
<param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
|
||||
<summary>
|
||||
Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event.
|
||||
</summary>
|
||||
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JContainer.Children">
|
||||
<summary>
|
||||
Returns a collection of the child tokens of this token, in document order.
|
||||
|
@ -4360,6 +4500,11 @@
|
|||
Occurs before an item is added to the collection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged">
|
||||
<summary>
|
||||
Occurs when the items list of the collection has changed, or the collection is reset.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
|
||||
<summary>
|
||||
Gets the container's children tokens.
|
||||
|
@ -4746,6 +4891,15 @@
|
|||
An <see cref="T:System.Object"/> that represents the owner of the specified property.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)">
|
||||
<summary>
|
||||
Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
|
||||
</summary>
|
||||
<param name="parameter">The expression tree representation of the runtime value.</param>
|
||||
<returns>
|
||||
The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
|
||||
<summary>
|
||||
Gets the container's children tokens.
|
||||
|
@ -4953,6 +5107,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
|
@ -5585,6 +5745,13 @@
|
|||
<param name="objectType">Type of the object.</param>
|
||||
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)">
|
||||
<summary>
|
||||
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.
|
||||
</summary>
|
||||
<param name="objectType">Type of the object.</param>
|
||||
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
|
||||
<summary>
|
||||
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
|
||||
|
@ -5679,6 +5846,14 @@
|
|||
The type of the object the formatter creates a new instance of.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)">
|
||||
<summary>
|
||||
When overridden in a derived class, controls the binding of a serialized object to a type.
|
||||
</summary>
|
||||
<param name="serializedType">The type of the object the formatter creates a new instance of.</param>
|
||||
<param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object. </param>
|
||||
<param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object. </param>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Serialization.ErrorContext">
|
||||
<summary>
|
||||
Provides information surrounding an error.
|
||||
|
@ -5755,6 +5930,12 @@
|
|||
</summary>
|
||||
<value>The name of the property.</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
|
||||
<summary>
|
||||
Gets or sets the type that declared this property.
|
||||
</summary>
|
||||
<value>The type that declared this property.</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
|
||||
<summary>
|
||||
Gets or sets the order of serialization and deserialization of a member.
|
||||
|
@ -6351,6 +6532,14 @@
|
|||
</summary>
|
||||
<value>The parametrized constructor.</value>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Serialization.JsonSerializerInternalWriter.SerializeDynamic(Newtonsoft.Json.JsonWriter,System.Dynamic.IDynamicMetaObjectProvider,Newtonsoft.Json.Serialization.JsonDynamicContract)">
|
||||
<summary>
|
||||
Serializes the dynamic.
|
||||
</summary>
|
||||
<param name="writer">The writer.</param>
|
||||
<param name="value">The value.</param>
|
||||
<param name="contract">The contract.</param>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
|
||||
<summary>
|
||||
Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
|
||||
|
@ -6392,6 +6581,32 @@
|
|||
When applied to a method, specifies that the method is called when an error occurs serializing an object.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
|
||||
<summary>
|
||||
Helper method for generating a MetaObject which calls a
|
||||
specific method on Dynamic that returns a result
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
|
||||
<summary>
|
||||
Helper method for generating a MetaObject which calls a
|
||||
specific method on Dynamic, but uses one of the arguments for
|
||||
the result.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
|
||||
<summary>
|
||||
Helper method for generating a MetaObject which calls a
|
||||
specific method on Dynamic, but uses one of the arguments for
|
||||
the result.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions">
|
||||
<summary>
|
||||
Returns a Restrictions object which includes our current restrictions merged
|
||||
with a restriction limiting our type
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
|
||||
<summary>
|
||||
Represents a method that constructs an object.
|
||||
|
@ -6427,23 +6642,6 @@
|
|||
Always include the .NET type name when serializing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert``1(System.Object)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert``1(System.Object,System.Globalization.CultureInfo)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
|
@ -6453,29 +6651,6 @@
|
|||
<param name="targetType">The type to convert the value to.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert``1(System.Object,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert``1(System.Object,System.Globalization.CultureInfo,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
|
@ -6488,25 +6663,6 @@
|
|||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast``1(System.Object)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert or cast the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<returns>The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast``1(System.Object,System.Globalization.CultureInfo)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert or cast the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<returns>The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
|
@ -6520,71 +6676,12 @@
|
|||
is returned if assignable to the target type.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast``1(System.Object,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast``1(System.Object,System.Globalization.CultureInfo,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="targetType">The type to convert the value to.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.Parse``1(System.String)">
|
||||
<summary>
|
||||
Parses the specified enum member name, returning it's value.
|
||||
</summary>
|
||||
<param name="enumMemberName">Name of the enum member.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.Parse``1(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Parses the specified enum member name, returning it's value.
|
||||
</summary>
|
||||
<param name="enumMemberName">Name of the enum member.</param>
|
||||
<param name="ignoreCase">If set to <c>true</c> ignore case.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``2">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
|
@ -6592,14 +6689,6 @@
|
|||
<param name="enumType">The enum type to get names and values for.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetMaximumValue``1(System.Type)">
|
||||
<summary>
|
||||
Gets the maximum valid value of an Enum type. Flags enums are ORed.
|
||||
</summary>
|
||||
<typeparam name="TEnumType">The type of the returned value. Must be assignable from the enum's underlying value type.</typeparam>
|
||||
<param name="enumType">The enum type to get the maximum value for.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.JsonToken">
|
||||
<summary>
|
||||
Specifies the type of Json token.
|
||||
|
@ -6642,7 +6731,7 @@
|
|||
</member>
|
||||
<member name="F:Newtonsoft.Json.JsonToken.Integer">
|
||||
<summary>
|
||||
An interger.
|
||||
An integer.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Newtonsoft.Json.JsonToken.Float">
|
||||
|
@ -6757,15 +6846,6 @@
|
|||
Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty(System.Collections.ICollection)">
|
||||
<summary>
|
||||
Determines whether the collection is null or empty.
|
||||
</summary>
|
||||
<param name="collection">The collection.</param>
|
||||
<returns>
|
||||
<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
|
||||
<summary>
|
||||
Determines whether the collection is null or empty.
|
||||
|
@ -6775,43 +6855,6 @@
|
|||
<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmptyOrDefault``1(System.Collections.Generic.IList{``0})">
|
||||
<summary>
|
||||
Determines whether the collection is null, empty or its contents are uninitialized values.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<returns>
|
||||
<c>true</c> if the collection is null or empty or its contents are uninitialized values; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.Slice``1(System.Collections.Generic.IList{``0},System.Nullable{System.Int32},System.Nullable{System.Int32})">
|
||||
<summary>
|
||||
Makes a slice of the specified list in between the start and end indexes.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<param name="start">The start index.</param>
|
||||
<param name="end">The end index.</param>
|
||||
<returns>A slice of the list.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.Slice``1(System.Collections.Generic.IList{``0},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})">
|
||||
<summary>
|
||||
Makes a slice of the specified list in between the start and end indexes,
|
||||
getting every so many items based upon the step.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<param name="start">The start index.</param>
|
||||
<param name="end">The end index.</param>
|
||||
<param name="step">The step.</param>
|
||||
<returns>A slice of the list.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.GroupBy``2(System.Collections.Generic.ICollection{``1},System.Func{``1,``0})">
|
||||
<summary>
|
||||
Group the collection using a function which returns the key.
|
||||
</summary>
|
||||
<param name="source">The source collection to group.</param>
|
||||
<param name="keySelector">The key selector.</param>
|
||||
<returns>A Dictionary with each key relating to a list of objects in a list grouped under it.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
|
||||
<summary>
|
||||
Adds the elements of the specified collection to the specified generic IList.
|
||||
|
@ -6819,15 +6862,6 @@
|
|||
<param name="initial">The list to add to.</param>
|
||||
<param name="collection">The collection of elements to add.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0)">
|
||||
<summary>
|
||||
Returns the index of the first occurrence in a sequence by using the default equality comparer.
|
||||
</summary>
|
||||
<typeparam name="TSource">The type of the elements of source.</typeparam>
|
||||
<param name="list">A sequence in which to locate a value.</param>
|
||||
<param name="value">The object to locate in the sequence</param>
|
||||
<returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
|
||||
<summary>
|
||||
Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
|
||||
|
@ -6845,13 +6879,6 @@
|
|||
<param name="type">The type.</param>
|
||||
<returns>The type of the typed collection's items.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.ItemsUnitializedValue``1(System.Collections.Generic.IList{``0})">
|
||||
<summary>
|
||||
Tests whether the list's items are their unitialized value.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<returns>Whether the list's items are their unitialized value</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
|
||||
<summary>
|
||||
Gets the member's underlying type.
|
||||
|
@ -6914,15 +6941,6 @@
|
|||
<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.ContainsWhiteSpace(System.String)">
|
||||
<summary>
|
||||
Determines whether the string contains white space.
|
||||
</summary>
|
||||
<param name="s">The string to test for white space.</param>
|
||||
<returns>
|
||||
<c>true</c> if the string contains white space; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
|
||||
<summary>
|
||||
Determines whether the string is all white space. Empty string will return false.
|
||||
|
@ -6932,45 +6950,6 @@
|
|||
<c>true</c> if the string is all white space; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.EnsureEndsWith(System.String,System.String)">
|
||||
<summary>
|
||||
Ensures the target string ends with the specified string.
|
||||
</summary>
|
||||
<param name="target">The target.</param>
|
||||
<param name="value">The value.</param>
|
||||
<returns>The target string with the value string at the end.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.IfNotNullOrEmpty(System.String,System.Action{System.String})">
|
||||
<summary>
|
||||
Perform an action if the string is not null or empty.
|
||||
</summary>
|
||||
<param name="value">The value.</param>
|
||||
<param name="action">The action to perform.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.Indent(System.String,System.Int32)">
|
||||
<summary>
|
||||
Indents the specified string.
|
||||
</summary>
|
||||
<param name="s">The string to indent.</param>
|
||||
<param name="indentation">The number of characters to indent by.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.Indent(System.String,System.Int32,System.Char)">
|
||||
<summary>
|
||||
Indents the specified string.
|
||||
</summary>
|
||||
<param name="s">The string to indent.</param>
|
||||
<param name="indentation">The number of characters to indent by.</param>
|
||||
<param name="indentChar">The indent character.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.NumberLines(System.String)">
|
||||
<summary>
|
||||
Numbers the lines.
|
||||
</summary>
|
||||
<param name="s">The string to number.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
|
||||
<summary>
|
||||
Nulls an empty string.
|
BIN
packages/Newtonsoft.Json.4.0.6/lib/sl3-wp/Newtonsoft.Json.dll
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/lib/sl3-wp/Newtonsoft.Json.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Newtonsoft.Json.4.0.6/lib/sl3-wp/Newtonsoft.Json.pdb
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/lib/sl3-wp/Newtonsoft.Json.pdb
vendored
Normal file
Binary file not shown.
|
@ -42,6 +42,12 @@
|
|||
</summary>
|
||||
<returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -217,6 +223,12 @@
|
|||
</summary>
|
||||
<param name="stream">The stream.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
</summary>
|
||||
<param name="reader">The reader.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
|
@ -225,6 +237,14 @@
|
|||
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
|
||||
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
</summary>
|
||||
<param name="reader">The reader.</param>
|
||||
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
|
||||
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -239,6 +259,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
|
@ -671,6 +697,12 @@
|
|||
</summary>
|
||||
<param name="stream">The stream.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
|
||||
</summary>
|
||||
<param name="writer">The writer.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
|
||||
<summary>
|
||||
Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
|
||||
|
@ -2356,6 +2388,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
|
@ -2670,7 +2708,7 @@
|
|||
</member>
|
||||
<member name="F:Newtonsoft.Json.JsonToken.Integer">
|
||||
<summary>
|
||||
An interger.
|
||||
An integer.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Newtonsoft.Json.JsonToken.Float">
|
||||
|
@ -2735,6 +2773,12 @@
|
|||
</summary>
|
||||
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -2794,7 +2838,7 @@
|
|||
</member>
|
||||
<member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
|
||||
<summary>
|
||||
Gets The Common Language Runtime (CLR) type for the current Json token.
|
||||
Gets the Common Language Runtime (CLR) type for the current Json token.
|
||||
</summary>
|
||||
<value></value>
|
||||
</member>
|
||||
|
@ -4500,6 +4544,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
|
@ -5459,6 +5509,12 @@
|
|||
</summary>
|
||||
<value>The name of the property.</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
|
||||
<summary>
|
||||
Gets or sets the type that declared this property.
|
||||
</summary>
|
||||
<value>The type that declared this property.</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
|
||||
<summary>
|
||||
Gets or sets the order of serialization and deserialization of a member.
|
||||
|
@ -5699,15 +5755,6 @@
|
|||
Always include the .NET type name when serializing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty(System.Collections.ICollection)">
|
||||
<summary>
|
||||
Determines whether the collection is null or empty.
|
||||
</summary>
|
||||
<param name="collection">The collection.</param>
|
||||
<returns>
|
||||
<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
|
||||
<summary>
|
||||
Determines whether the collection is null or empty.
|
||||
|
@ -5717,43 +5764,6 @@
|
|||
<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmptyOrDefault``1(System.Collections.Generic.IList{``0})">
|
||||
<summary>
|
||||
Determines whether the collection is null, empty or its contents are uninitialized values.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<returns>
|
||||
<c>true</c> if the collection is null or empty or its contents are uninitialized values; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.Slice``1(System.Collections.Generic.IList{``0},System.Nullable{System.Int32},System.Nullable{System.Int32})">
|
||||
<summary>
|
||||
Makes a slice of the specified list in between the start and end indexes.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<param name="start">The start index.</param>
|
||||
<param name="end">The end index.</param>
|
||||
<returns>A slice of the list.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.Slice``1(System.Collections.Generic.IList{``0},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})">
|
||||
<summary>
|
||||
Makes a slice of the specified list in between the start and end indexes,
|
||||
getting every so many items based upon the step.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<param name="start">The start index.</param>
|
||||
<param name="end">The end index.</param>
|
||||
<param name="step">The step.</param>
|
||||
<returns>A slice of the list.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.GroupBy``2(System.Collections.Generic.ICollection{``1},System.Func{``1,``0})">
|
||||
<summary>
|
||||
Group the collection using a function which returns the key.
|
||||
</summary>
|
||||
<param name="source">The source collection to group.</param>
|
||||
<param name="keySelector">The key selector.</param>
|
||||
<returns>A Dictionary with each key relating to a list of objects in a list grouped under it.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
|
||||
<summary>
|
||||
Adds the elements of the specified collection to the specified generic IList.
|
||||
|
@ -5761,15 +5771,6 @@
|
|||
<param name="initial">The list to add to.</param>
|
||||
<param name="collection">The collection of elements to add.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0)">
|
||||
<summary>
|
||||
Returns the index of the first occurrence in a sequence by using the default equality comparer.
|
||||
</summary>
|
||||
<typeparam name="TSource">The type of the elements of source.</typeparam>
|
||||
<param name="list">A sequence in which to locate a value.</param>
|
||||
<param name="value">The object to locate in the sequence</param>
|
||||
<returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
|
||||
<summary>
|
||||
Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
|
||||
|
@ -5780,23 +5781,6 @@
|
|||
<param name="comparer">An equality comparer to compare values.</param>
|
||||
<returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert``1(System.Object)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert``1(System.Object,System.Globalization.CultureInfo)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
|
@ -5806,29 +5790,6 @@
|
|||
<param name="targetType">The type to convert the value to.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert``1(System.Object,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert``1(System.Object,System.Globalization.CultureInfo,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
|
@ -5841,25 +5802,6 @@
|
|||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast``1(System.Object)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert or cast the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<returns>The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast``1(System.Object,System.Globalization.CultureInfo)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert or cast the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<returns>The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
|
@ -5873,71 +5815,12 @@
|
|||
is returned if assignable to the target type.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast``1(System.Object,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast``1(System.Object,System.Globalization.CultureInfo,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="targetType">The type to convert the value to.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.Parse``1(System.String)">
|
||||
<summary>
|
||||
Parses the specified enum member name, returning it's value.
|
||||
</summary>
|
||||
<param name="enumMemberName">Name of the enum member.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.Parse``1(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Parses the specified enum member name, returning it's value.
|
||||
</summary>
|
||||
<param name="enumMemberName">Name of the enum member.</param>
|
||||
<param name="ignoreCase">If set to <c>true</c> ignore case.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``2">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
|
@ -5945,14 +5828,6 @@
|
|||
<param name="enumType">The enum type to get names and values for.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetMaximumValue``1(System.Type)">
|
||||
<summary>
|
||||
Gets the maximum valid value of an Enum type. Flags enums are ORed.
|
||||
</summary>
|
||||
<typeparam name="TEnumType">The type of the returned value. Must be assignable from the enum's underlying value type.</typeparam>
|
||||
<param name="enumType">The enum type to get the maximum value for.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
|
||||
<summary>
|
||||
Gets the type of the typed collection's items.
|
||||
|
@ -5960,13 +5835,6 @@
|
|||
<param name="type">The type.</param>
|
||||
<returns>The type of the typed collection's items.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.ItemsUnitializedValue``1(System.Collections.Generic.IList{``0})">
|
||||
<summary>
|
||||
Tests whether the list's items are their unitialized value.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<returns>Whether the list's items are their unitialized value</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
|
||||
<summary>
|
||||
Gets the member's underlying type.
|
||||
|
@ -6034,15 +5902,6 @@
|
|||
Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.ContainsWhiteSpace(System.String)">
|
||||
<summary>
|
||||
Determines whether the string contains white space.
|
||||
</summary>
|
||||
<param name="s">The string to test for white space.</param>
|
||||
<returns>
|
||||
<c>true</c> if the string contains white space; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
|
||||
<summary>
|
||||
Determines whether the string is all white space. Empty string will return false.
|
||||
|
@ -6052,45 +5911,6 @@
|
|||
<c>true</c> if the string is all white space; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.EnsureEndsWith(System.String,System.String)">
|
||||
<summary>
|
||||
Ensures the target string ends with the specified string.
|
||||
</summary>
|
||||
<param name="target">The target.</param>
|
||||
<param name="value">The value.</param>
|
||||
<returns>The target string with the value string at the end.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.IfNotNullOrEmpty(System.String,System.Action{System.String})">
|
||||
<summary>
|
||||
Perform an action if the string is not null or empty.
|
||||
</summary>
|
||||
<param name="value">The value.</param>
|
||||
<param name="action">The action to perform.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.Indent(System.String,System.Int32)">
|
||||
<summary>
|
||||
Indents the specified string.
|
||||
</summary>
|
||||
<param name="s">The string to indent.</param>
|
||||
<param name="indentation">The number of characters to indent by.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.Indent(System.String,System.Int32,System.Char)">
|
||||
<summary>
|
||||
Indents the specified string.
|
||||
</summary>
|
||||
<param name="s">The string to indent.</param>
|
||||
<param name="indentation">The number of characters to indent by.</param>
|
||||
<param name="indentChar">The indent character.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.NumberLines(System.String)">
|
||||
<summary>
|
||||
Numbers the lines.
|
||||
</summary>
|
||||
<param name="s">The string to number.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
|
||||
<summary>
|
||||
Nulls an empty string.
|
BIN
packages/Newtonsoft.Json.4.0.6/lib/sl4-windowsphone71/Newtonsoft.Json.dll
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/lib/sl4-windowsphone71/Newtonsoft.Json.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Newtonsoft.Json.4.0.6/lib/sl4-windowsphone71/Newtonsoft.Json.pdb
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/lib/sl4-windowsphone71/Newtonsoft.Json.pdb
vendored
Normal file
Binary file not shown.
6394
packages/Newtonsoft.Json.4.0.6/lib/sl4-windowsphone71/Newtonsoft.Json.xml
vendored
Normal file
6394
packages/Newtonsoft.Json.4.0.6/lib/sl4-windowsphone71/Newtonsoft.Json.xml
vendored
Normal file
File diff suppressed because it is too large
Load diff
BIN
packages/Newtonsoft.Json.4.0.6/lib/sl4/Newtonsoft.Json.dll
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/lib/sl4/Newtonsoft.Json.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Newtonsoft.Json.4.0.6/lib/sl4/Newtonsoft.Json.pdb
vendored
Normal file
BIN
packages/Newtonsoft.Json.4.0.6/lib/sl4/Newtonsoft.Json.pdb
vendored
Normal file
Binary file not shown.
|
@ -42,6 +42,12 @@
|
|||
</summary>
|
||||
<returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -217,6 +223,12 @@
|
|||
</summary>
|
||||
<param name="stream">The stream.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
</summary>
|
||||
<param name="reader">The reader.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
|
@ -225,6 +237,14 @@
|
|||
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
|
||||
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
|
||||
</summary>
|
||||
<param name="reader">The reader.</param>
|
||||
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
|
||||
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -239,6 +259,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
|
@ -671,6 +697,12 @@
|
|||
</summary>
|
||||
<param name="stream">The stream.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
|
||||
</summary>
|
||||
<param name="writer">The writer.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
|
||||
<summary>
|
||||
Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
|
||||
|
@ -2286,6 +2318,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
|
@ -2600,7 +2638,7 @@
|
|||
</member>
|
||||
<member name="F:Newtonsoft.Json.JsonToken.Integer">
|
||||
<summary>
|
||||
An interger.
|
||||
An integer.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Newtonsoft.Json.JsonToken.Float">
|
||||
|
@ -2665,6 +2703,12 @@
|
|||
</summary>
|
||||
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
|
||||
|
@ -2724,7 +2768,7 @@
|
|||
</member>
|
||||
<member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
|
||||
<summary>
|
||||
Gets The Common Language Runtime (CLR) type for the current Json token.
|
||||
Gets the Common Language Runtime (CLR) type for the current Json token.
|
||||
</summary>
|
||||
<value></value>
|
||||
</member>
|
||||
|
@ -4466,6 +4510,12 @@
|
|||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
</summary>
|
||||
<returns>A <see cref="T:System.Nullable`1"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
|
||||
<summary>
|
||||
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
|
||||
|
@ -5455,6 +5505,12 @@
|
|||
</summary>
|
||||
<value>The name of the property.</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
|
||||
<summary>
|
||||
Gets or sets the type that declared this property.
|
||||
</summary>
|
||||
<value>The type that declared this property.</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
|
||||
<summary>
|
||||
Gets or sets the order of serialization and deserialization of a member.
|
||||
|
@ -5703,15 +5759,6 @@
|
|||
Always include the .NET type name when serializing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty(System.Collections.ICollection)">
|
||||
<summary>
|
||||
Determines whether the collection is null or empty.
|
||||
</summary>
|
||||
<param name="collection">The collection.</param>
|
||||
<returns>
|
||||
<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
|
||||
<summary>
|
||||
Determines whether the collection is null or empty.
|
||||
|
@ -5721,43 +5768,6 @@
|
|||
<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmptyOrDefault``1(System.Collections.Generic.IList{``0})">
|
||||
<summary>
|
||||
Determines whether the collection is null, empty or its contents are uninitialized values.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<returns>
|
||||
<c>true</c> if the collection is null or empty or its contents are uninitialized values; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.Slice``1(System.Collections.Generic.IList{``0},System.Nullable{System.Int32},System.Nullable{System.Int32})">
|
||||
<summary>
|
||||
Makes a slice of the specified list in between the start and end indexes.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<param name="start">The start index.</param>
|
||||
<param name="end">The end index.</param>
|
||||
<returns>A slice of the list.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.Slice``1(System.Collections.Generic.IList{``0},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})">
|
||||
<summary>
|
||||
Makes a slice of the specified list in between the start and end indexes,
|
||||
getting every so many items based upon the step.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<param name="start">The start index.</param>
|
||||
<param name="end">The end index.</param>
|
||||
<param name="step">The step.</param>
|
||||
<returns>A slice of the list.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.GroupBy``2(System.Collections.Generic.ICollection{``1},System.Func{``1,``0})">
|
||||
<summary>
|
||||
Group the collection using a function which returns the key.
|
||||
</summary>
|
||||
<param name="source">The source collection to group.</param>
|
||||
<param name="keySelector">The key selector.</param>
|
||||
<returns>A Dictionary with each key relating to a list of objects in a list grouped under it.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
|
||||
<summary>
|
||||
Adds the elements of the specified collection to the specified generic IList.
|
||||
|
@ -5765,15 +5775,6 @@
|
|||
<param name="initial">The list to add to.</param>
|
||||
<param name="collection">The collection of elements to add.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0)">
|
||||
<summary>
|
||||
Returns the index of the first occurrence in a sequence by using the default equality comparer.
|
||||
</summary>
|
||||
<typeparam name="TSource">The type of the elements of source.</typeparam>
|
||||
<param name="list">A sequence in which to locate a value.</param>
|
||||
<param name="value">The object to locate in the sequence</param>
|
||||
<returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
|
||||
<summary>
|
||||
Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
|
||||
|
@ -5784,23 +5785,6 @@
|
|||
<param name="comparer">An equality comparer to compare values.</param>
|
||||
<returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert``1(System.Object)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert``1(System.Object,System.Globalization.CultureInfo)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
|
@ -5810,29 +5794,6 @@
|
|||
<param name="targetType">The type to convert the value to.</param>
|
||||
<returns>The converted type.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert``1(System.Object,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert``1(System.Object,System.Globalization.CultureInfo,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
|
||||
<summary>
|
||||
Converts the value to the specified type.
|
||||
|
@ -5845,25 +5806,6 @@
|
|||
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast``1(System.Object)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert or cast the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<returns>The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast``1(System.Object,System.Globalization.CultureInfo)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert or cast the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<returns>The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
|
@ -5877,44 +5819,6 @@
|
|||
is returned if assignable to the target type.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast``1(System.Object,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast``1(System.Object,System.Globalization.CultureInfo,``0@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<typeparam name="T">The type to convert the value to.</typeparam>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
|
||||
<summary>
|
||||
Converts the value to the specified type. If the value is unable to be converted, the
|
||||
value is checked whether it assignable to the specified type.
|
||||
</summary>
|
||||
<param name="initialValue">The value to convert.</param>
|
||||
<param name="culture">The culture to use when converting.</param>
|
||||
<param name="targetType">The type to convert the value to.</param>
|
||||
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
|
||||
<returns>
|
||||
<c>true</c> if <c>initialValue</c> was converted successfully or is assignable; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
|
||||
<summary>
|
||||
Helper method for generating a MetaObject which calls a
|
||||
|
@ -5941,33 +5845,12 @@
|
|||
with a restriction limiting our type
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.Parse``1(System.String)">
|
||||
<summary>
|
||||
Parses the specified enum member name, returning it's value.
|
||||
</summary>
|
||||
<param name="enumMemberName">Name of the enum member.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.Parse``1(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Parses the specified enum member name, returning it's value.
|
||||
</summary>
|
||||
<param name="enumMemberName">Name of the enum member.</param>
|
||||
<param name="ignoreCase">If set to <c>true</c> ignore case.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``2">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
|
||||
<summary>
|
||||
Gets a dictionary of the names and values of an Enum type.
|
||||
|
@ -5975,14 +5858,6 @@
|
|||
<param name="enumType">The enum type to get names and values for.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetMaximumValue``1(System.Type)">
|
||||
<summary>
|
||||
Gets the maximum valid value of an Enum type. Flags enums are ORed.
|
||||
</summary>
|
||||
<typeparam name="TEnumType">The type of the returned value. Must be assignable from the enum's underlying value type.</typeparam>
|
||||
<param name="enumType">The enum type to get the maximum value for.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
|
||||
<summary>
|
||||
Gets the type of the typed collection's items.
|
||||
|
@ -5990,13 +5865,6 @@
|
|||
<param name="type">The type.</param>
|
||||
<returns>The type of the typed collection's items.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.ItemsUnitializedValue``1(System.Collections.Generic.IList{``0})">
|
||||
<summary>
|
||||
Tests whether the list's items are their unitialized value.
|
||||
</summary>
|
||||
<param name="list">The list.</param>
|
||||
<returns>Whether the list's items are their unitialized value</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
|
||||
<summary>
|
||||
Gets the member's underlying type.
|
||||
|
@ -6064,15 +5932,6 @@
|
|||
Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.ContainsWhiteSpace(System.String)">
|
||||
<summary>
|
||||
Determines whether the string contains white space.
|
||||
</summary>
|
||||
<param name="s">The string to test for white space.</param>
|
||||
<returns>
|
||||
<c>true</c> if the string contains white space; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
|
||||
<summary>
|
||||
Determines whether the string is all white space. Empty string will return false.
|
||||
|
@ -6082,45 +5941,6 @@
|
|||
<c>true</c> if the string is all white space; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.EnsureEndsWith(System.String,System.String)">
|
||||
<summary>
|
||||
Ensures the target string ends with the specified string.
|
||||
</summary>
|
||||
<param name="target">The target.</param>
|
||||
<param name="value">The value.</param>
|
||||
<returns>The target string with the value string at the end.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.IfNotNullOrEmpty(System.String,System.Action{System.String})">
|
||||
<summary>
|
||||
Perform an action if the string is not null or empty.
|
||||
</summary>
|
||||
<param name="value">The value.</param>
|
||||
<param name="action">The action to perform.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.Indent(System.String,System.Int32)">
|
||||
<summary>
|
||||
Indents the specified string.
|
||||
</summary>
|
||||
<param name="s">The string to indent.</param>
|
||||
<param name="indentation">The number of characters to indent by.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.Indent(System.String,System.Int32,System.Char)">
|
||||
<summary>
|
||||
Indents the specified string.
|
||||
</summary>
|
||||
<param name="s">The string to indent.</param>
|
||||
<param name="indentation">The number of characters to indent by.</param>
|
||||
<param name="indentChar">The indent character.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.NumberLines(System.String)">
|
||||
<summary>
|
||||
Numbers the lines.
|
||||
</summary>
|
||||
<param name="s">The string to number.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
|
||||
<summary>
|
||||
Nulls an empty string.
|
Binary file not shown.
Binary file not shown.
|
@ -248,7 +248,61 @@
|
|||
Gets the expiration date of the cookie.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.ElementNotVisibleException">
|
||||
<member name="T:OpenQA.Selenium.DriverService">
|
||||
<summary>
|
||||
Exposes the service provided by a native WebDriver server executable.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverService.#ctor(System.String,System.Int32)">
|
||||
<summary>
|
||||
Initializes a new instance of the DriverService class.
|
||||
</summary>
|
||||
<param name="executable">The full path to the ChromeDriver executable.</param>
|
||||
<param name="port">The port on which the ChromeDriver executable should listen.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverService.Dispose">
|
||||
<summary>
|
||||
Releases all resources associated with this <see cref="T:OpenQA.Selenium.DriverService"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverService.Start">
|
||||
<summary>
|
||||
Starts the DriverService.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverService.FindFreePort">
|
||||
<summary>
|
||||
Finds a random, free port to be listened on by the DriverService
|
||||
</summary>
|
||||
<returns>A random, free port to be listened on by the DriverService</returns>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverService.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Releases all resources associated with this <see cref="T:OpenQA.Selenium.DriverService"/>.
|
||||
</summary>
|
||||
<param name="disposing"><see langword="true"/> if the Dispose method was explicitly called; otherwise, <see langword="false"/>.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverService.Stop">
|
||||
<summary>
|
||||
Stops the ChromeDriverService.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:OpenQA.Selenium.DriverService.ServiceUrl">
|
||||
<summary>
|
||||
Gets the Uri of the service.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:OpenQA.Selenium.DriverService.IsRunning">
|
||||
<summary>
|
||||
Gets a value indicating whether the service is running.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:OpenQA.Selenium.DriverService.DriverServiceExecutableName">
|
||||
<summary>
|
||||
Gets the executable file name of the driver service.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.DriverServiceNotFoundException">
|
||||
<summary>
|
||||
The exception that is thrown when an element is not visible.
|
||||
</summary>
|
||||
|
@ -289,6 +343,42 @@
|
|||
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual
|
||||
information about the source or destination.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException"/> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException"/> class with
|
||||
a specified error message.
|
||||
</summary>
|
||||
<param name="message">The message that describes the error.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor(System.String,System.Exception)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException"/> class with
|
||||
a specified error message and a reference to the inner exception that is the
|
||||
cause of this exception.
|
||||
</summary>
|
||||
<param name="message">The error message that explains the reason for the exception.</param>
|
||||
<param name="innerException">The exception that is the cause of the current exception,
|
||||
or <see langword="null"/> if no inner exception is specified.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException"/> class with serialized data.
|
||||
</summary>
|
||||
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized
|
||||
object data about the exception being thrown.</param>
|
||||
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual
|
||||
information about the source or destination.</param>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.ElementNotVisibleException">
|
||||
<summary>
|
||||
The exception that is thrown when an element is not visible.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.ElementNotVisibleException.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:OpenQA.Selenium.ElementNotVisibleException"/> class.
|
||||
|
@ -3019,16 +3109,6 @@
|
|||
<param name="driverService">The <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService"/> that drives the browser.</param>
|
||||
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeCommandExecutor.Start">
|
||||
<summary>
|
||||
Starts the <see cref="T:OpenQA.Selenium.Chrome.ChromeCommandExecutor"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeCommandExecutor.Stop">
|
||||
<summary>
|
||||
Stops the <see cref="T:OpenQA.Selenium.Chrome.ChromeCommandExecutor"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeCommandExecutor.Execute(OpenQA.Selenium.Remote.Command)">
|
||||
<summary>
|
||||
Executes a command with the ChromeDriver.
|
||||
|
@ -3129,7 +3209,7 @@
|
|||
<param name="capabilities">The desired capabilities of the Chrome driver.</param>
|
||||
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.Chrome.ChromeDriverService,OpenQA.Selenium.Chrome.ChromeOptions,System.TimeSpan)">
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.DriverService,OpenQA.Selenium.Chrome.ChromeOptions,System.TimeSpan)">
|
||||
<summary>
|
||||
Initializes a new instance of the ChromeDriver class using the specified <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService"/>.
|
||||
</summary>
|
||||
|
@ -3137,7 +3217,7 @@
|
|||
<param name="options">The <see cref="T:OpenQA.Selenium.Chrome.ChromeOptions"/> to be used with the Chrome driver.</param>
|
||||
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.Chrome.ChromeDriverService,OpenQA.Selenium.ICapabilities,System.TimeSpan)">
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.DriverService,OpenQA.Selenium.ICapabilities,System.TimeSpan)">
|
||||
<summary>
|
||||
Initializes a new instance of the ChromeDriver class using the specified <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService"/>.
|
||||
</summary>
|
||||
|
@ -3176,29 +3256,9 @@
|
|||
<param name="driverPath">The directory containing the ChromeDriver executable.</param>
|
||||
<returns>A ChromeDriverService using a random port.</returns>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.Dispose">
|
||||
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.DriverServiceExecutableName">
|
||||
<summary>
|
||||
Releases all resources associated with this <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.Start">
|
||||
<summary>
|
||||
Starts the ChromeDriverService.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.Stop">
|
||||
<summary>
|
||||
Stops the ChromeDriverService.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.ServiceUrl">
|
||||
<summary>
|
||||
Gets the Uri of the service.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.IsRunning">
|
||||
<summary>
|
||||
Gets a value indicating whether the service is running.
|
||||
Gets the executable file name of the driver service.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.Chrome.ChromeOptions">
|
||||
|
@ -4638,6 +4698,36 @@
|
|||
Gets a value indicating whether the Internet Explorer driver server is running.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.IE.InternetExplorerDriverService">
|
||||
<summary>
|
||||
Exposes the service provided by the native ChromeDriver executable.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriverService.#ctor(System.String,System.Int32)">
|
||||
<summary>
|
||||
Initializes a new instance of the InternetExplorerDriverService class.
|
||||
</summary>
|
||||
<param name="executable">The full path to the InternetExplorerDriver executable.</param>
|
||||
<param name="port">The port on which the InternetExplorerDriver executable should listen.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriverService.CreateDefaultService">
|
||||
<summary>
|
||||
Creates a default instance of the InternetExplorerDriverService.
|
||||
</summary>
|
||||
<returns>A InternetExplorerDriverService that implements default settings.</returns>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriverService.CreateDefaultService(System.String)">
|
||||
<summary>
|
||||
Creates a default instance of the InternetExplorerDriverService using a specified path to the ChromeDriver executable.
|
||||
</summary>
|
||||
<param name="driverPath">The directory containing the InternetExplorerDriver executable.</param>
|
||||
<returns>A InternetExplorerDriverService using a random port.</returns>
|
||||
</member>
|
||||
<member name="P:OpenQA.Selenium.IE.InternetExplorerDriverService.DriverServiceExecutableName">
|
||||
<summary>
|
||||
Gets the executable file name of the driver service.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.IE.InternetExplorerWebElement">
|
||||
<summary>
|
||||
InternetExplorerWebElement allows you to have access to specific items that are found on the page.
|
||||
|
@ -6052,6 +6142,25 @@
|
|||
Represents the SendKeysToActiveElement command.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.Remote.DriverServiceCommandExecutor">
|
||||
<summary>
|
||||
Provides a mechanism to execute commands on the browser
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Remote.DriverServiceCommandExecutor.#ctor(OpenQA.Selenium.DriverService,System.TimeSpan)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.DriverServiceCommandExecutor"/> class.
|
||||
</summary>
|
||||
<param name="driverService">The <see cref="T:OpenQA.Selenium.DriverService"/> that drives the browser.</param>
|
||||
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Remote.DriverServiceCommandExecutor.Execute(OpenQA.Selenium.Remote.Command)">
|
||||
<summary>
|
||||
Executes a command with the ChromeDriver.
|
||||
</summary>
|
||||
<param name="commandToExecute">The command you wish to execute</param>
|
||||
<returns>A response from the browser</returns>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.Remote.ErrorResponse">
|
||||
<summary>
|
||||
Provides a way to store errors from a repsonse
|
Binary file not shown.
|
@ -248,7 +248,61 @@
|
|||
Gets the expiration date of the cookie.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.ElementNotVisibleException">
|
||||
<member name="T:OpenQA.Selenium.DriverService">
|
||||
<summary>
|
||||
Exposes the service provided by a native WebDriver server executable.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverService.#ctor(System.String,System.Int32)">
|
||||
<summary>
|
||||
Initializes a new instance of the DriverService class.
|
||||
</summary>
|
||||
<param name="executable">The full path to the ChromeDriver executable.</param>
|
||||
<param name="port">The port on which the ChromeDriver executable should listen.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverService.Dispose">
|
||||
<summary>
|
||||
Releases all resources associated with this <see cref="T:OpenQA.Selenium.DriverService"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverService.Start">
|
||||
<summary>
|
||||
Starts the DriverService.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverService.FindFreePort">
|
||||
<summary>
|
||||
Finds a random, free port to be listened on by the DriverService
|
||||
</summary>
|
||||
<returns>A random, free port to be listened on by the DriverService</returns>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverService.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Releases all resources associated with this <see cref="T:OpenQA.Selenium.DriverService"/>.
|
||||
</summary>
|
||||
<param name="disposing"><see langword="true"/> if the Dispose method was explicitly called; otherwise, <see langword="false"/>.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverService.Stop">
|
||||
<summary>
|
||||
Stops the ChromeDriverService.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:OpenQA.Selenium.DriverService.ServiceUrl">
|
||||
<summary>
|
||||
Gets the Uri of the service.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:OpenQA.Selenium.DriverService.IsRunning">
|
||||
<summary>
|
||||
Gets a value indicating whether the service is running.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:OpenQA.Selenium.DriverService.DriverServiceExecutableName">
|
||||
<summary>
|
||||
Gets the executable file name of the driver service.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.DriverServiceNotFoundException">
|
||||
<summary>
|
||||
The exception that is thrown when an element is not visible.
|
||||
</summary>
|
||||
|
@ -289,6 +343,42 @@
|
|||
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual
|
||||
information about the source or destination.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException"/> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException"/> class with
|
||||
a specified error message.
|
||||
</summary>
|
||||
<param name="message">The message that describes the error.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor(System.String,System.Exception)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException"/> class with
|
||||
a specified error message and a reference to the inner exception that is the
|
||||
cause of this exception.
|
||||
</summary>
|
||||
<param name="message">The error message that explains the reason for the exception.</param>
|
||||
<param name="innerException">The exception that is the cause of the current exception,
|
||||
or <see langword="null"/> if no inner exception is specified.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException"/> class with serialized data.
|
||||
</summary>
|
||||
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized
|
||||
object data about the exception being thrown.</param>
|
||||
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual
|
||||
information about the source or destination.</param>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.ElementNotVisibleException">
|
||||
<summary>
|
||||
The exception that is thrown when an element is not visible.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.ElementNotVisibleException.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:OpenQA.Selenium.ElementNotVisibleException"/> class.
|
||||
|
@ -3019,16 +3109,6 @@
|
|||
<param name="driverService">The <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService"/> that drives the browser.</param>
|
||||
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeCommandExecutor.Start">
|
||||
<summary>
|
||||
Starts the <see cref="T:OpenQA.Selenium.Chrome.ChromeCommandExecutor"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeCommandExecutor.Stop">
|
||||
<summary>
|
||||
Stops the <see cref="T:OpenQA.Selenium.Chrome.ChromeCommandExecutor"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeCommandExecutor.Execute(OpenQA.Selenium.Remote.Command)">
|
||||
<summary>
|
||||
Executes a command with the ChromeDriver.
|
||||
|
@ -3129,7 +3209,7 @@
|
|||
<param name="capabilities">The desired capabilities of the Chrome driver.</param>
|
||||
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.Chrome.ChromeDriverService,OpenQA.Selenium.Chrome.ChromeOptions,System.TimeSpan)">
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.DriverService,OpenQA.Selenium.Chrome.ChromeOptions,System.TimeSpan)">
|
||||
<summary>
|
||||
Initializes a new instance of the ChromeDriver class using the specified <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService"/>.
|
||||
</summary>
|
||||
|
@ -3137,7 +3217,7 @@
|
|||
<param name="options">The <see cref="T:OpenQA.Selenium.Chrome.ChromeOptions"/> to be used with the Chrome driver.</param>
|
||||
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.Chrome.ChromeDriverService,OpenQA.Selenium.ICapabilities,System.TimeSpan)">
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.DriverService,OpenQA.Selenium.ICapabilities,System.TimeSpan)">
|
||||
<summary>
|
||||
Initializes a new instance of the ChromeDriver class using the specified <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService"/>.
|
||||
</summary>
|
||||
|
@ -3176,29 +3256,9 @@
|
|||
<param name="driverPath">The directory containing the ChromeDriver executable.</param>
|
||||
<returns>A ChromeDriverService using a random port.</returns>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.Dispose">
|
||||
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.DriverServiceExecutableName">
|
||||
<summary>
|
||||
Releases all resources associated with this <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.Start">
|
||||
<summary>
|
||||
Starts the ChromeDriverService.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.Stop">
|
||||
<summary>
|
||||
Stops the ChromeDriverService.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.ServiceUrl">
|
||||
<summary>
|
||||
Gets the Uri of the service.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.IsRunning">
|
||||
<summary>
|
||||
Gets a value indicating whether the service is running.
|
||||
Gets the executable file name of the driver service.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.Chrome.ChromeOptions">
|
||||
|
@ -4638,6 +4698,36 @@
|
|||
Gets a value indicating whether the Internet Explorer driver server is running.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.IE.InternetExplorerDriverService">
|
||||
<summary>
|
||||
Exposes the service provided by the native ChromeDriver executable.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriverService.#ctor(System.String,System.Int32)">
|
||||
<summary>
|
||||
Initializes a new instance of the InternetExplorerDriverService class.
|
||||
</summary>
|
||||
<param name="executable">The full path to the InternetExplorerDriver executable.</param>
|
||||
<param name="port">The port on which the InternetExplorerDriver executable should listen.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriverService.CreateDefaultService">
|
||||
<summary>
|
||||
Creates a default instance of the InternetExplorerDriverService.
|
||||
</summary>
|
||||
<returns>A InternetExplorerDriverService that implements default settings.</returns>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriverService.CreateDefaultService(System.String)">
|
||||
<summary>
|
||||
Creates a default instance of the InternetExplorerDriverService using a specified path to the ChromeDriver executable.
|
||||
</summary>
|
||||
<param name="driverPath">The directory containing the InternetExplorerDriver executable.</param>
|
||||
<returns>A InternetExplorerDriverService using a random port.</returns>
|
||||
</member>
|
||||
<member name="P:OpenQA.Selenium.IE.InternetExplorerDriverService.DriverServiceExecutableName">
|
||||
<summary>
|
||||
Gets the executable file name of the driver service.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.IE.InternetExplorerWebElement">
|
||||
<summary>
|
||||
InternetExplorerWebElement allows you to have access to specific items that are found on the page.
|
||||
|
@ -6052,6 +6142,25 @@
|
|||
Represents the SendKeysToActiveElement command.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.Remote.DriverServiceCommandExecutor">
|
||||
<summary>
|
||||
Provides a mechanism to execute commands on the browser
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Remote.DriverServiceCommandExecutor.#ctor(OpenQA.Selenium.DriverService,System.TimeSpan)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.DriverServiceCommandExecutor"/> class.
|
||||
</summary>
|
||||
<param name="driverService">The <see cref="T:OpenQA.Selenium.DriverService"/> that drives the browser.</param>
|
||||
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
|
||||
</member>
|
||||
<member name="M:OpenQA.Selenium.Remote.DriverServiceCommandExecutor.Execute(OpenQA.Selenium.Remote.Command)">
|
||||
<summary>
|
||||
Executes a command with the ChromeDriver.
|
||||
</summary>
|
||||
<param name="commandToExecute">The command you wish to execute</param>
|
||||
<returns>A response from the browser</returns>
|
||||
</member>
|
||||
<member name="T:OpenQA.Selenium.Remote.ErrorResponse">
|
||||
<summary>
|
||||
Provides a way to store errors from a repsonse
|
31
packages/elmah.1.2.0.1/content/web.config.transform
vendored
Normal file
31
packages/elmah.1.2.0.1/content/web.config.transform
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
<configuration>
|
||||
<configSections>
|
||||
<sectionGroup name="elmah">
|
||||
<section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah" />
|
||||
<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
|
||||
<section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
|
||||
<section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah" />
|
||||
</sectionGroup>
|
||||
</configSections>
|
||||
<system.web>
|
||||
<httpModules>
|
||||
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
|
||||
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" />
|
||||
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah"/>
|
||||
</httpModules>
|
||||
<httpHandlers>
|
||||
<add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
|
||||
</httpHandlers>
|
||||
</system.web>
|
||||
<system.webServer>
|
||||
<validation validateIntegratedModeConfiguration="false" />
|
||||
<modules>
|
||||
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" preCondition="managedHandler" />
|
||||
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" preCondition="managedHandler" />
|
||||
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" preCondition="managedHandler" />
|
||||
</modules>
|
||||
<handlers>
|
||||
<add name="Elmah" path="elmah.axd" verb="POST,GET,HEAD" type="Elmah.ErrorLogPageFactory, Elmah" preCondition="integratedMode" />
|
||||
</handlers>
|
||||
</system.webServer>
|
||||
</configuration>
|
BIN
packages/elmah.1.2.0.1/elmah.1.2.0.1.nupkg
vendored
Normal file
BIN
packages/elmah.1.2.0.1/elmah.1.2.0.1.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/elmah.corelibrary.1.2.1/elmah.corelibrary.1.2.1.nupkg
vendored
Normal file
BIN
packages/elmah.corelibrary.1.2.1/elmah.corelibrary.1.2.1.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/elmah.corelibrary.1.2.1/lib/Elmah.dll
vendored
Normal file
BIN
packages/elmah.corelibrary.1.2.1/lib/Elmah.dll
vendored
Normal file
Binary file not shown.
299
packages/elmah.sqlserver.1.2/content/App_Readme/Elmah.SqlServer.sql
vendored
Normal file
299
packages/elmah.sqlserver.1.2/content/App_Readme/Elmah.SqlServer.sql
vendored
Normal file
|
@ -0,0 +1,299 @@
|
|||
/*
|
||||
|
||||
ELMAH - Error Logging Modules and Handlers for ASP.NET
|
||||
Copyright (c) 2004-9 Atif Aziz. All rights reserved.
|
||||
|
||||
Author(s):
|
||||
|
||||
Atif Aziz, http://www.raboof.com
|
||||
Phil Haacked, http://haacked.com
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
*/
|
||||
|
||||
-- ELMAH DDL script for Microsoft SQL Server 2000 or later.
|
||||
|
||||
-- $Id: SQLServer.sql 677 2009-09-29 18:02:39Z azizatif $
|
||||
|
||||
DECLARE @DBCompatibilityLevel INT
|
||||
DECLARE @DBCompatibilityLevelMajor INT
|
||||
DECLARE @DBCompatibilityLevelMinor INT
|
||||
|
||||
SELECT
|
||||
@DBCompatibilityLevel = cmptlevel
|
||||
FROM
|
||||
master.dbo.sysdatabases
|
||||
WHERE
|
||||
name = DB_NAME()
|
||||
|
||||
IF @DBCompatibilityLevel <> 80
|
||||
BEGIN
|
||||
|
||||
SELECT @DBCompatibilityLevelMajor = @DBCompatibilityLevel / 10,
|
||||
@DBCompatibilityLevelMinor = @DBCompatibilityLevel % 10
|
||||
|
||||
PRINT N'
|
||||
===========================================================================
|
||||
WARNING!
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
This script is designed for Microsoft SQL Server 2000 (8.0) but your
|
||||
database is set up for compatibility with version '
|
||||
+ CAST(@DBCompatibilityLevelMajor AS NVARCHAR(80))
|
||||
+ N'.'
|
||||
+ CAST(@DBCompatibilityLevelMinor AS NVARCHAR(80))
|
||||
+ N'. Although
|
||||
the script should work with later versions of Microsoft SQL Server,
|
||||
you can ensure compatibility by executing the following statement:
|
||||
|
||||
ALTER DATABASE ['
|
||||
+ DB_NAME()
|
||||
+ N']
|
||||
SET COMPATIBILITY_LEVEL = 80
|
||||
|
||||
If you are hosting ELMAH in the same database as your application
|
||||
database and do not wish to change the compatibility option then you
|
||||
should create a separate database to host ELMAH where you can set the
|
||||
compatibility level more freely.
|
||||
|
||||
If you continue with the current setup, please report any compatibility
|
||||
issues you encounter over at:
|
||||
|
||||
http://code.google.com/p/elmah/issues/list
|
||||
|
||||
===========================================================================
|
||||
'
|
||||
END
|
||||
GO
|
||||
|
||||
/* ------------------------------------------------------------------------
|
||||
TABLES
|
||||
------------------------------------------------------------------------ */
|
||||
|
||||
CREATE TABLE [dbo].[ELMAH_Error]
|
||||
(
|
||||
[ErrorId] UNIQUEIDENTIFIER NOT NULL,
|
||||
[Application] NVARCHAR(60) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
|
||||
[Host] NVARCHAR(50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
|
||||
[Type] NVARCHAR(100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
|
||||
[Source] NVARCHAR(60) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
|
||||
[Message] NVARCHAR(500) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
|
||||
[User] NVARCHAR(50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
|
||||
[StatusCode] INT NOT NULL,
|
||||
[TimeUtc] DATETIME NOT NULL,
|
||||
[Sequence] INT IDENTITY (1, 1) NOT NULL,
|
||||
[AllXml] NTEXT COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
|
||||
)
|
||||
ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
|
||||
|
||||
GO
|
||||
|
||||
ALTER TABLE [dbo].[ELMAH_Error] WITH NOCHECK ADD
|
||||
CONSTRAINT [PK_ELMAH_Error] PRIMARY KEY NONCLUSTERED ([ErrorId]) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
ALTER TABLE [dbo].[ELMAH_Error] ADD
|
||||
CONSTRAINT [DF_ELMAH_Error_ErrorId] DEFAULT (NEWID()) FOR [ErrorId]
|
||||
GO
|
||||
|
||||
CREATE NONCLUSTERED INDEX [IX_ELMAH_Error_App_Time_Seq] ON [dbo].[ELMAH_Error]
|
||||
(
|
||||
[Application] ASC,
|
||||
[TimeUtc] DESC,
|
||||
[Sequence] DESC
|
||||
)
|
||||
ON [PRIMARY]
|
||||
GO
|
||||
|
||||
/* ------------------------------------------------------------------------
|
||||
STORED PROCEDURES
|
||||
------------------------------------------------------------------------ */
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
CREATE PROCEDURE [dbo].[ELMAH_GetErrorXml]
|
||||
(
|
||||
@Application NVARCHAR(60),
|
||||
@ErrorId UNIQUEIDENTIFIER
|
||||
)
|
||||
AS
|
||||
|
||||
SET NOCOUNT ON
|
||||
|
||||
SELECT
|
||||
[AllXml]
|
||||
FROM
|
||||
[ELMAH_Error]
|
||||
WHERE
|
||||
[ErrorId] = @ErrorId
|
||||
AND
|
||||
[Application] = @Application
|
||||
|
||||
GO
|
||||
SET QUOTED_IDENTIFIER OFF
|
||||
GO
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
CREATE PROCEDURE [dbo].[ELMAH_GetErrorsXml]
|
||||
(
|
||||
@Application NVARCHAR(60),
|
||||
@PageIndex INT = 0,
|
||||
@PageSize INT = 15,
|
||||
@TotalCount INT OUTPUT
|
||||
)
|
||||
AS
|
||||
|
||||
SET NOCOUNT ON
|
||||
|
||||
DECLARE @FirstTimeUTC DATETIME
|
||||
DECLARE @FirstSequence INT
|
||||
DECLARE @StartRow INT
|
||||
DECLARE @StartRowIndex INT
|
||||
|
||||
SELECT
|
||||
@TotalCount = COUNT(1)
|
||||
FROM
|
||||
[ELMAH_Error]
|
||||
WHERE
|
||||
[Application] = @Application
|
||||
|
||||
-- Get the ID of the first error for the requested page
|
||||
|
||||
SET @StartRowIndex = @PageIndex * @PageSize + 1
|
||||
|
||||
IF @StartRowIndex <= @TotalCount
|
||||
BEGIN
|
||||
|
||||
SET ROWCOUNT @StartRowIndex
|
||||
|
||||
SELECT
|
||||
@FirstTimeUTC = [TimeUtc],
|
||||
@FirstSequence = [Sequence]
|
||||
FROM
|
||||
[ELMAH_Error]
|
||||
WHERE
|
||||
[Application] = @Application
|
||||
ORDER BY
|
||||
[TimeUtc] DESC,
|
||||
[Sequence] DESC
|
||||
|
||||
END
|
||||
ELSE
|
||||
BEGIN
|
||||
|
||||
SET @PageSize = 0
|
||||
|
||||
END
|
||||
|
||||
-- Now set the row count to the requested page size and get
|
||||
-- all records below it for the pertaining application.
|
||||
|
||||
SET ROWCOUNT @PageSize
|
||||
|
||||
SELECT
|
||||
errorId = [ErrorId],
|
||||
application = [Application],
|
||||
host = [Host],
|
||||
type = [Type],
|
||||
source = [Source],
|
||||
message = [Message],
|
||||
[user] = [User],
|
||||
statusCode = [StatusCode],
|
||||
time = CONVERT(VARCHAR(50), [TimeUtc], 126) + 'Z'
|
||||
FROM
|
||||
[ELMAH_Error] error
|
||||
WHERE
|
||||
[Application] = @Application
|
||||
AND
|
||||
[TimeUtc] <= @FirstTimeUTC
|
||||
AND
|
||||
[Sequence] <= @FirstSequence
|
||||
ORDER BY
|
||||
[TimeUtc] DESC,
|
||||
[Sequence] DESC
|
||||
FOR
|
||||
XML AUTO
|
||||
|
||||
GO
|
||||
SET QUOTED_IDENTIFIER OFF
|
||||
GO
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
CREATE PROCEDURE [dbo].[ELMAH_LogError]
|
||||
(
|
||||
@ErrorId UNIQUEIDENTIFIER,
|
||||
@Application NVARCHAR(60),
|
||||
@Host NVARCHAR(30),
|
||||
@Type NVARCHAR(100),
|
||||
@Source NVARCHAR(60),
|
||||
@Message NVARCHAR(500),
|
||||
@User NVARCHAR(50),
|
||||
@AllXml NTEXT,
|
||||
@StatusCode INT,
|
||||
@TimeUtc DATETIME
|
||||
)
|
||||
AS
|
||||
|
||||
SET NOCOUNT ON
|
||||
|
||||
INSERT
|
||||
INTO
|
||||
[ELMAH_Error]
|
||||
(
|
||||
[ErrorId],
|
||||
[Application],
|
||||
[Host],
|
||||
[Type],
|
||||
[Source],
|
||||
[Message],
|
||||
[User],
|
||||
[AllXml],
|
||||
[StatusCode],
|
||||
[TimeUtc]
|
||||
)
|
||||
VALUES
|
||||
(
|
||||
@ErrorId,
|
||||
@Application,
|
||||
@Host,
|
||||
@Type,
|
||||
@Source,
|
||||
@Message,
|
||||
@User,
|
||||
@AllXml,
|
||||
@StatusCode,
|
||||
@TimeUtc
|
||||
)
|
||||
|
||||
GO
|
||||
SET QUOTED_IDENTIFIER OFF
|
||||
GO
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
4
packages/elmah.sqlserver.1.2/content/App_Readme/Elmah.SqlServer.txt
vendored
Normal file
4
packages/elmah.sqlserver.1.2/content/App_Readme/Elmah.SqlServer.txt
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
Please note that in order to complete the installation of ELMAH.SqlServer you will have to do the following:
|
||||
|
||||
1) Run the Elmah.SqlServer.sql script against your database
|
||||
2) Edit your web.config with the correct settings in the elmah <connectionString> to connect to your database
|
9
packages/elmah.sqlserver.1.2/content/web.config.transform
vendored
Normal file
9
packages/elmah.sqlserver.1.2/content/web.config.transform
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
<configuration>
|
||||
<elmah>
|
||||
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="elmah-sqlserver" />
|
||||
</elmah>
|
||||
<connectionStrings>
|
||||
<!-- TODO: Replace the ****'s with the correct entries -->
|
||||
<add name="elmah-sqlserver" connectionString="Data Source=****;User ID=****;Password=****;Initial Catalog=****;" providerName="System.Data.SqlClient"/>
|
||||
</connectionStrings>
|
||||
</configuration>
|
BIN
packages/elmah.sqlserver.1.2/elmah.sqlserver.1.2.nupkg
vendored
Normal file
BIN
packages/elmah.sqlserver.1.2/elmah.sqlserver.1.2.nupkg
vendored
Normal file
Binary file not shown.
|
@ -1,14 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<repositories>
|
||||
<repository path="..\NzbDrone.Web\packages.config" />
|
||||
<repository path="..\NzbDrone.App.Test\packages.config" />
|
||||
<repository path="..\NzbDrone.Common.Test\packages.config" />
|
||||
<repository path="..\NzbDrone.Common\packages.config" />
|
||||
<repository path="..\NzbDrone.Core.Test\packages.config" />
|
||||
<repository path="..\NzbDrone.Core\packages.config" />
|
||||
<repository path="..\NzbDrone.App.Test\packages.config" />
|
||||
<repository path="..\NzbDrone\packages.config" />
|
||||
<repository path="..\NzbDrone.Services\NzbDrone.Services.Service\packages.config" />
|
||||
<repository path="..\NzbDrone.Services\NzbDrone.Services.Tests\packages.config" />
|
||||
<repository path="..\NzbDrone.Test.Common\packages.config" />
|
||||
<repository path="..\NzbDrone.Update.Test\packages.config" />
|
||||
<repository path="..\NzbDrone.Update\packages.config" />
|
||||
<repository path="..\NzbDrone.Common\packages.config" />
|
||||
<repository path="..\NzbDrone.Common.Test\packages.config" />
|
||||
<repository path="..\NzbDrone.Test.Common\packages.config" />
|
||||
<repository path="..\NzbDrone.Web.UI.Test\packages.config" />
|
||||
<repository path="..\NzbDrone.Web\packages.config" />
|
||||
<repository path="..\NzbDrone\packages.config" />
|
||||
</repositories>
|
Loading…
Add table
Add a link
Reference in a new issue