初始化CRICS
This commit is contained in:
BIN
lib/AipSdk.dll
Normal file
BIN
lib/AipSdk.dll
Normal file
Binary file not shown.
BIN
lib/CacheManager.Core.0.7.4/CacheManager.Core.0.7.4.nupkg
Normal file
BIN
lib/CacheManager.Core.0.7.4/CacheManager.Core.0.7.4.nupkg
Normal file
Binary file not shown.
BIN
lib/CacheManager.Core.0.7.4/lib/dnx451/CacheManager.Core.dll
Normal file
BIN
lib/CacheManager.Core.0.7.4/lib/dnx451/CacheManager.Core.dll
Normal file
Binary file not shown.
4751
lib/CacheManager.Core.0.7.4/lib/dnx451/CacheManager.Core.xml
Normal file
4751
lib/CacheManager.Core.0.7.4/lib/dnx451/CacheManager.Core.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/CacheManager.Core.0.7.4/lib/dotnet5.2/CacheManager.Core.dll
Normal file
BIN
lib/CacheManager.Core.0.7.4/lib/dotnet5.2/CacheManager.Core.dll
Normal file
Binary file not shown.
4265
lib/CacheManager.Core.0.7.4/lib/dotnet5.2/CacheManager.Core.xml
Normal file
4265
lib/CacheManager.Core.0.7.4/lib/dotnet5.2/CacheManager.Core.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/CacheManager.Core.0.7.4/lib/net40/CacheManager.Core.dll
Normal file
BIN
lib/CacheManager.Core.0.7.4/lib/net40/CacheManager.Core.dll
Normal file
Binary file not shown.
4751
lib/CacheManager.Core.0.7.4/lib/net40/CacheManager.Core.xml
Normal file
4751
lib/CacheManager.Core.0.7.4/lib/net40/CacheManager.Core.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/CacheManager.Core.0.7.4/lib/net45/CacheManager.Core.dll
Normal file
BIN
lib/CacheManager.Core.0.7.4/lib/net45/CacheManager.Core.dll
Normal file
Binary file not shown.
4751
lib/CacheManager.Core.0.7.4/lib/net45/CacheManager.Core.xml
Normal file
4751
lib/CacheManager.Core.0.7.4/lib/net45/CacheManager.Core.xml
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,189 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>CacheManager.Memcached</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:CacheManager.Core.ConfigurationBuilderExtensions">
|
||||
<summary>
|
||||
Extensions for the configuration builder specific to the memcached cache handle.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithMemcachedCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart,System.String)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.Memcached.MemcachedCacheHandle`1"/>. The <paramref name="configurationName"/> must match with cache configured via enyim configuration section.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<param name="configurationName">The configuration name.</param>
|
||||
<returns>The part.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown if handleName is null.</exception>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithMemcachedCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.Memcached.MemcachedCacheHandle`1"/>. The <paramref name="configurationName"/> must match with cache configured via enyim configuration section.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<param name="configurationName">The configuration name.</param>
|
||||
<param name="isBackPlateSource">
|
||||
Set this to true if this cache handle should be the source of the back plate.
|
||||
<para>This setting will be ignored if no back plate is configured.</para>
|
||||
</param>
|
||||
<returns>The part.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if handleName or handleType are null.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="T:CacheManager.Memcached.MemcachedCacheHandle`1">
|
||||
<summary>
|
||||
Cache handle implementation based on the Enyim memcached client.
|
||||
</summary>
|
||||
<typeparam name="TCacheValue">The type of the cache value.</typeparam>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.#ctor(CacheManager.Core.CacheManagerConfiguration,CacheManager.Core.CacheHandleConfiguration,CacheManager.Core.Logging.ILoggerFactory)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:CacheManager.Memcached.MemcachedCacheHandle`1"/> class.
|
||||
</summary>
|
||||
<param name="managerConfiguration">The manager configuration.</param>
|
||||
<param name="configuration">The cache handle configuration.</param>
|
||||
<param name="loggerFactory">The logger factory.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
If <paramref name="configuration"/> or <paramref name="loggerFactory"/> is null.
|
||||
</exception>
|
||||
<exception cref="T:System.InvalidOperationException">
|
||||
The cache value type is not serializable or if the enyim configuration section could not
|
||||
be initialized.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.Count">
|
||||
<summary>
|
||||
Gets the number of items the cache handle currently maintains.
|
||||
</summary>
|
||||
<value>The count.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.GetMemcachedClientConfiguration">
|
||||
<summary>
|
||||
Gets the get memcached client configuration.
|
||||
</summary>
|
||||
<value>The get memcached client configuration.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.ServerItemCount">
|
||||
<summary>
|
||||
Gets the total number of items per server.
|
||||
</summary>
|
||||
<value>The total number of items per server.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.Servers">
|
||||
<summary>
|
||||
Gets the servers.
|
||||
</summary>
|
||||
<value>The servers.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.Cache">
|
||||
<summary>
|
||||
Gets or sets the cache.
|
||||
</summary>
|
||||
<value>The cache.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.Logger">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Clear">
|
||||
<summary>
|
||||
Clears this cache, removing all items in the base cache and all regions.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.ClearRegion(System.String)">
|
||||
<summary>
|
||||
Clears the cache region, removing all items from the specified <paramref name="region"/> only.
|
||||
</summary>
|
||||
<param name="region">The cache region.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Update(System.String,System.Func{`0,`0},System.Int32)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Update(System.String,System.String,System.Func{`0,`0},System.Int32)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.AddInternalPrepared(CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Adds a value to the cache.
|
||||
</summary>
|
||||
<param name="item">The <c>CacheItem</c> to be added to the cache.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was not already added to the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Performs application-defined tasks associated with freeing, releasing, or resetting
|
||||
unmanaged resources.
|
||||
</summary>
|
||||
<param name="disposeManaged">Indicator if managed resources should be released.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.GetCacheItemInternal(System.String)">
|
||||
<summary>
|
||||
Gets a <c>CacheItem</c> for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<returns>The <c>CacheItem</c>.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.GetCacheItemInternal(System.String,System.String)">
|
||||
<summary>
|
||||
Gets a <c>CacheItem</c> for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<param name="region">The cache region.</param>
|
||||
<returns>The <c>CacheItem</c>.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.PutInternalPrepared(CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Puts the <paramref name="item"/> into the cache. If the item exists it will get updated
|
||||
with the new value. If the item doesn't exist, the item will be added to the cache.
|
||||
</summary>
|
||||
<param name="item">The <c>CacheItem</c> to be added to the cache.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.RemoveInternal(System.String)">
|
||||
<summary>
|
||||
Removes a value from the cache for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was found and removed from the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.RemoveInternal(System.String,System.String)">
|
||||
<summary>
|
||||
Removes a value from the cache for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<param name="region">The cache region.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was found and removed from the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Store(Enyim.Caching.Memcached.StoreMode,CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Stores the item with the specified mode.
|
||||
</summary>
|
||||
<param name="mode">The mode.</param>
|
||||
<param name="item">The item.</param>
|
||||
<returns>The result.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.GetEnyimSectionName(System.String)">
|
||||
<summary>
|
||||
Gets the name of the enyim section.
|
||||
</summary>
|
||||
<param name="handleName">Name of the handle.</param>
|
||||
<returns>The section name.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.GetSection">
|
||||
<summary>
|
||||
Gets the section.
|
||||
</summary>
|
||||
<returns>The client configuration.</returns>
|
||||
<exception cref="T:System.Configuration.ConfigurationErrorsException">
|
||||
If memcached client section was not found or there are no servers defined for memcached.
|
||||
</exception>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
@@ -0,0 +1,189 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>CacheManager.Memcached</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:CacheManager.Core.ConfigurationBuilderExtensions">
|
||||
<summary>
|
||||
Extensions for the configuration builder specific to the memcached cache handle.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithMemcachedCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart,System.String)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.Memcached.MemcachedCacheHandle`1"/>. The <paramref name="configurationName"/> must match with cache configured via enyim configuration section.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<param name="configurationName">The configuration name.</param>
|
||||
<returns>The part.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown if handleName is null.</exception>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithMemcachedCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.Memcached.MemcachedCacheHandle`1"/>. The <paramref name="configurationName"/> must match with cache configured via enyim configuration section.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<param name="configurationName">The configuration name.</param>
|
||||
<param name="isBackPlateSource">
|
||||
Set this to true if this cache handle should be the source of the back plate.
|
||||
<para>This setting will be ignored if no back plate is configured.</para>
|
||||
</param>
|
||||
<returns>The part.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if handleName or handleType are null.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="T:CacheManager.Memcached.MemcachedCacheHandle`1">
|
||||
<summary>
|
||||
Cache handle implementation based on the Enyim memcached client.
|
||||
</summary>
|
||||
<typeparam name="TCacheValue">The type of the cache value.</typeparam>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.#ctor(CacheManager.Core.CacheManagerConfiguration,CacheManager.Core.CacheHandleConfiguration,CacheManager.Core.Logging.ILoggerFactory)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:CacheManager.Memcached.MemcachedCacheHandle`1"/> class.
|
||||
</summary>
|
||||
<param name="managerConfiguration">The manager configuration.</param>
|
||||
<param name="configuration">The cache handle configuration.</param>
|
||||
<param name="loggerFactory">The logger factory.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
If <paramref name="configuration"/> or <paramref name="loggerFactory"/> is null.
|
||||
</exception>
|
||||
<exception cref="T:System.InvalidOperationException">
|
||||
The cache value type is not serializable or if the enyim configuration section could not
|
||||
be initialized.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.Count">
|
||||
<summary>
|
||||
Gets the number of items the cache handle currently maintains.
|
||||
</summary>
|
||||
<value>The count.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.GetMemcachedClientConfiguration">
|
||||
<summary>
|
||||
Gets the get memcached client configuration.
|
||||
</summary>
|
||||
<value>The get memcached client configuration.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.ServerItemCount">
|
||||
<summary>
|
||||
Gets the total number of items per server.
|
||||
</summary>
|
||||
<value>The total number of items per server.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.Servers">
|
||||
<summary>
|
||||
Gets the servers.
|
||||
</summary>
|
||||
<value>The servers.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.Cache">
|
||||
<summary>
|
||||
Gets or sets the cache.
|
||||
</summary>
|
||||
<value>The cache.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.Logger">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Clear">
|
||||
<summary>
|
||||
Clears this cache, removing all items in the base cache and all regions.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.ClearRegion(System.String)">
|
||||
<summary>
|
||||
Clears the cache region, removing all items from the specified <paramref name="region"/> only.
|
||||
</summary>
|
||||
<param name="region">The cache region.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Update(System.String,System.Func{`0,`0},System.Int32)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Update(System.String,System.String,System.Func{`0,`0},System.Int32)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.AddInternalPrepared(CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Adds a value to the cache.
|
||||
</summary>
|
||||
<param name="item">The <c>CacheItem</c> to be added to the cache.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was not already added to the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Performs application-defined tasks associated with freeing, releasing, or resetting
|
||||
unmanaged resources.
|
||||
</summary>
|
||||
<param name="disposeManaged">Indicator if managed resources should be released.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.GetCacheItemInternal(System.String)">
|
||||
<summary>
|
||||
Gets a <c>CacheItem</c> for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<returns>The <c>CacheItem</c>.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.GetCacheItemInternal(System.String,System.String)">
|
||||
<summary>
|
||||
Gets a <c>CacheItem</c> for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<param name="region">The cache region.</param>
|
||||
<returns>The <c>CacheItem</c>.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.PutInternalPrepared(CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Puts the <paramref name="item"/> into the cache. If the item exists it will get updated
|
||||
with the new value. If the item doesn't exist, the item will be added to the cache.
|
||||
</summary>
|
||||
<param name="item">The <c>CacheItem</c> to be added to the cache.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.RemoveInternal(System.String)">
|
||||
<summary>
|
||||
Removes a value from the cache for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was found and removed from the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.RemoveInternal(System.String,System.String)">
|
||||
<summary>
|
||||
Removes a value from the cache for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<param name="region">The cache region.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was found and removed from the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Store(Enyim.Caching.Memcached.StoreMode,CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Stores the item with the specified mode.
|
||||
</summary>
|
||||
<param name="mode">The mode.</param>
|
||||
<param name="item">The item.</param>
|
||||
<returns>The result.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.GetEnyimSectionName(System.String)">
|
||||
<summary>
|
||||
Gets the name of the enyim section.
|
||||
</summary>
|
||||
<param name="handleName">Name of the handle.</param>
|
||||
<returns>The section name.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.GetSection">
|
||||
<summary>
|
||||
Gets the section.
|
||||
</summary>
|
||||
<returns>The client configuration.</returns>
|
||||
<exception cref="T:System.Configuration.ConfigurationErrorsException">
|
||||
If memcached client section was not found or there are no servers defined for memcached.
|
||||
</exception>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
@@ -0,0 +1,189 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>CacheManager.Memcached</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:CacheManager.Core.ConfigurationBuilderExtensions">
|
||||
<summary>
|
||||
Extensions for the configuration builder specific to the memcached cache handle.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithMemcachedCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart,System.String)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.Memcached.MemcachedCacheHandle`1"/>. The <paramref name="configurationName"/> must match with cache configured via enyim configuration section.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<param name="configurationName">The configuration name.</param>
|
||||
<returns>The part.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown if handleName is null.</exception>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithMemcachedCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.Memcached.MemcachedCacheHandle`1"/>. The <paramref name="configurationName"/> must match with cache configured via enyim configuration section.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<param name="configurationName">The configuration name.</param>
|
||||
<param name="isBackPlateSource">
|
||||
Set this to true if this cache handle should be the source of the back plate.
|
||||
<para>This setting will be ignored if no back plate is configured.</para>
|
||||
</param>
|
||||
<returns>The part.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
Thrown if handleName or handleType are null.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="T:CacheManager.Memcached.MemcachedCacheHandle`1">
|
||||
<summary>
|
||||
Cache handle implementation based on the Enyim memcached client.
|
||||
</summary>
|
||||
<typeparam name="TCacheValue">The type of the cache value.</typeparam>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.#ctor(CacheManager.Core.CacheManagerConfiguration,CacheManager.Core.CacheHandleConfiguration,CacheManager.Core.Logging.ILoggerFactory)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:CacheManager.Memcached.MemcachedCacheHandle`1"/> class.
|
||||
</summary>
|
||||
<param name="managerConfiguration">The manager configuration.</param>
|
||||
<param name="configuration">The cache handle configuration.</param>
|
||||
<param name="loggerFactory">The logger factory.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
If <paramref name="configuration"/> or <paramref name="loggerFactory"/> is null.
|
||||
</exception>
|
||||
<exception cref="T:System.InvalidOperationException">
|
||||
The cache value type is not serializable or if the enyim configuration section could not
|
||||
be initialized.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.Count">
|
||||
<summary>
|
||||
Gets the number of items the cache handle currently maintains.
|
||||
</summary>
|
||||
<value>The count.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.GetMemcachedClientConfiguration">
|
||||
<summary>
|
||||
Gets the get memcached client configuration.
|
||||
</summary>
|
||||
<value>The get memcached client configuration.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.ServerItemCount">
|
||||
<summary>
|
||||
Gets the total number of items per server.
|
||||
</summary>
|
||||
<value>The total number of items per server.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.Servers">
|
||||
<summary>
|
||||
Gets the servers.
|
||||
</summary>
|
||||
<value>The servers.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.Cache">
|
||||
<summary>
|
||||
Gets or sets the cache.
|
||||
</summary>
|
||||
<value>The cache.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.Memcached.MemcachedCacheHandle`1.Logger">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Clear">
|
||||
<summary>
|
||||
Clears this cache, removing all items in the base cache and all regions.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.ClearRegion(System.String)">
|
||||
<summary>
|
||||
Clears the cache region, removing all items from the specified <paramref name="region"/> only.
|
||||
</summary>
|
||||
<param name="region">The cache region.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Update(System.String,System.Func{`0,`0},System.Int32)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Update(System.String,System.String,System.Func{`0,`0},System.Int32)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.AddInternalPrepared(CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Adds a value to the cache.
|
||||
</summary>
|
||||
<param name="item">The <c>CacheItem</c> to be added to the cache.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was not already added to the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Performs application-defined tasks associated with freeing, releasing, or resetting
|
||||
unmanaged resources.
|
||||
</summary>
|
||||
<param name="disposeManaged">Indicator if managed resources should be released.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.GetCacheItemInternal(System.String)">
|
||||
<summary>
|
||||
Gets a <c>CacheItem</c> for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<returns>The <c>CacheItem</c>.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.GetCacheItemInternal(System.String,System.String)">
|
||||
<summary>
|
||||
Gets a <c>CacheItem</c> for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<param name="region">The cache region.</param>
|
||||
<returns>The <c>CacheItem</c>.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.PutInternalPrepared(CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Puts the <paramref name="item"/> into the cache. If the item exists it will get updated
|
||||
with the new value. If the item doesn't exist, the item will be added to the cache.
|
||||
</summary>
|
||||
<param name="item">The <c>CacheItem</c> to be added to the cache.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.RemoveInternal(System.String)">
|
||||
<summary>
|
||||
Removes a value from the cache for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was found and removed from the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.RemoveInternal(System.String,System.String)">
|
||||
<summary>
|
||||
Removes a value from the cache for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<param name="region">The cache region.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was found and removed from the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.Store(Enyim.Caching.Memcached.StoreMode,CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Stores the item with the specified mode.
|
||||
</summary>
|
||||
<param name="mode">The mode.</param>
|
||||
<param name="item">The item.</param>
|
||||
<returns>The result.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.GetEnyimSectionName(System.String)">
|
||||
<summary>
|
||||
Gets the name of the enyim section.
|
||||
</summary>
|
||||
<param name="handleName">Name of the handle.</param>
|
||||
<returns>The section name.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Memcached.MemcachedCacheHandle`1.GetSection">
|
||||
<summary>
|
||||
Gets the section.
|
||||
</summary>
|
||||
<returns>The client configuration.</returns>
|
||||
<exception cref="T:System.Configuration.ConfigurationErrorsException">
|
||||
If memcached client section was not found or there are no servers defined for memcached.
|
||||
</exception>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,140 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>CacheManager.SystemRuntimeCaching</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:CacheManager.Core.ConfigurationBuilderExtensions">
|
||||
<summary>
|
||||
Extensions for the configuration builder specific to System.Runtime.Caching cache handle.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithSystemRuntimeCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart,System.String)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1" /> using a <see cref="T:System.Runtime.Caching.MemoryCache"/> instance with the given <paramref name="instanceName"/>.
|
||||
The named cache instance can be configured via <c>app/web.config</c> <c>system.runtime.caching</c> section.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<param name="instanceName">The name to be used for the <see cref="T:System.Runtime.Caching.MemoryCache"/> instance.</param>
|
||||
<returns>The builder part.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown if handleName is null.</exception>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithSystemRuntimeCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1" /> using a <see cref="T:System.Runtime.Caching.MemoryCache"/>.
|
||||
The name of the cache instance will be 'default'.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<returns>The builder part.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithSystemRuntimeCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1" /> using a <see cref="T:System.Runtime.Caching.MemoryCache"/> instance with the given <paramref name="instanceName"/>.
|
||||
The named cache instance can be configured via <c>app/web.config</c> <c>system.runtime.caching</c> section.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<param name="instanceName">The name to be used for the cache instance.</param>
|
||||
<param name="isBackPlateSource">Set this to true if this cache handle should be the source of the back plate.
|
||||
This setting will be ignored if no back plate is configured.</param>
|
||||
<returns>
|
||||
The builder part.
|
||||
</returns>
|
||||
<exception cref="T:System.ArgumentNullException">If part is null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="instanceName"/> is null.</exception>
|
||||
</member>
|
||||
<member name="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1">
|
||||
<summary>
|
||||
Simple implementation for the <see cref="T:System.Runtime.Caching.MemoryCache"/>.
|
||||
</summary>
|
||||
<typeparam name="TCacheValue">The type of the cache value.</typeparam>
|
||||
<remarks>
|
||||
Although the MemoryCache doesn't support regions nor a RemoveAll/Clear method, we will
|
||||
implement it via cache dependencies.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.#ctor(CacheManager.Core.CacheManagerConfiguration,CacheManager.Core.CacheHandleConfiguration,CacheManager.Core.Logging.ILoggerFactory)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1"/> class.
|
||||
</summary>
|
||||
<param name="managerConfiguration">The manager configuration.</param>
|
||||
<param name="configuration">The cache handle configuration.</param>
|
||||
<param name="loggerFactory">The logger factory.</param>
|
||||
</member>
|
||||
<member name="P:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.CacheSettings">
|
||||
<summary>
|
||||
Gets the cache settings.
|
||||
</summary>
|
||||
<value>The cache settings.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.Count">
|
||||
<summary>
|
||||
Gets the number of items the cache handle currently maintains.
|
||||
</summary>
|
||||
<value>The count.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.Logger">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.Clear">
|
||||
<summary>
|
||||
Clears this cache, removing all items in the base cache and all regions.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.ClearRegion(System.String)">
|
||||
<summary>
|
||||
Clears the cache region, removing all items from the specified <paramref name="region"/> only.
|
||||
</summary>
|
||||
<param name="region">The cache region.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.AddInternalPrepared(CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Adds a value to the cache.
|
||||
</summary>
|
||||
<param name="item">The <c>CacheItem</c> to be added to the cache.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was not already added to the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.GetCacheItemInternal(System.String)">
|
||||
<summary>
|
||||
Gets a <c>CacheItem</c> for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<returns>The <c>CacheItem</c>.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.GetCacheItemInternal(System.String,System.String)">
|
||||
<summary>
|
||||
Gets a <c>CacheItem</c> for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<param name="region">The cache region.</param>
|
||||
<returns>The <c>CacheItem</c>.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.PutInternalPrepared(CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Puts the <paramref name="item"/> into the cache. If the item exists it will get updated
|
||||
with the new value. If the item doesn't exist, the item will be added to the cache.
|
||||
</summary>
|
||||
<param name="item">The <c>CacheItem</c> to be added to the cache.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.RemoveInternal(System.String)">
|
||||
<summary>
|
||||
Removes a value from the cache for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was found and removed from the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.RemoveInternal(System.String,System.String)">
|
||||
<summary>
|
||||
Removes a value from the cache for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<param name="region">The cache region.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was found and removed from the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
@@ -0,0 +1,140 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>CacheManager.SystemRuntimeCaching</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:CacheManager.Core.ConfigurationBuilderExtensions">
|
||||
<summary>
|
||||
Extensions for the configuration builder specific to System.Runtime.Caching cache handle.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithSystemRuntimeCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart,System.String)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1" /> using a <see cref="T:System.Runtime.Caching.MemoryCache"/> instance with the given <paramref name="instanceName"/>.
|
||||
The named cache instance can be configured via <c>app/web.config</c> <c>system.runtime.caching</c> section.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<param name="instanceName">The name to be used for the <see cref="T:System.Runtime.Caching.MemoryCache"/> instance.</param>
|
||||
<returns>The builder part.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown if handleName is null.</exception>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithSystemRuntimeCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1" /> using a <see cref="T:System.Runtime.Caching.MemoryCache"/>.
|
||||
The name of the cache instance will be 'default'.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<returns>The builder part.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithSystemRuntimeCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1" /> using a <see cref="T:System.Runtime.Caching.MemoryCache"/> instance with the given <paramref name="instanceName"/>.
|
||||
The named cache instance can be configured via <c>app/web.config</c> <c>system.runtime.caching</c> section.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<param name="instanceName">The name to be used for the cache instance.</param>
|
||||
<param name="isBackPlateSource">Set this to true if this cache handle should be the source of the back plate.
|
||||
This setting will be ignored if no back plate is configured.</param>
|
||||
<returns>
|
||||
The builder part.
|
||||
</returns>
|
||||
<exception cref="T:System.ArgumentNullException">If part is null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="instanceName"/> is null.</exception>
|
||||
</member>
|
||||
<member name="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1">
|
||||
<summary>
|
||||
Simple implementation for the <see cref="T:System.Runtime.Caching.MemoryCache"/>.
|
||||
</summary>
|
||||
<typeparam name="TCacheValue">The type of the cache value.</typeparam>
|
||||
<remarks>
|
||||
Although the MemoryCache doesn't support regions nor a RemoveAll/Clear method, we will
|
||||
implement it via cache dependencies.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.#ctor(CacheManager.Core.CacheManagerConfiguration,CacheManager.Core.CacheHandleConfiguration,CacheManager.Core.Logging.ILoggerFactory)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1"/> class.
|
||||
</summary>
|
||||
<param name="managerConfiguration">The manager configuration.</param>
|
||||
<param name="configuration">The cache handle configuration.</param>
|
||||
<param name="loggerFactory">The logger factory.</param>
|
||||
</member>
|
||||
<member name="P:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.CacheSettings">
|
||||
<summary>
|
||||
Gets the cache settings.
|
||||
</summary>
|
||||
<value>The cache settings.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.Count">
|
||||
<summary>
|
||||
Gets the number of items the cache handle currently maintains.
|
||||
</summary>
|
||||
<value>The count.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.Logger">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.Clear">
|
||||
<summary>
|
||||
Clears this cache, removing all items in the base cache and all regions.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.ClearRegion(System.String)">
|
||||
<summary>
|
||||
Clears the cache region, removing all items from the specified <paramref name="region"/> only.
|
||||
</summary>
|
||||
<param name="region">The cache region.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.AddInternalPrepared(CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Adds a value to the cache.
|
||||
</summary>
|
||||
<param name="item">The <c>CacheItem</c> to be added to the cache.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was not already added to the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.GetCacheItemInternal(System.String)">
|
||||
<summary>
|
||||
Gets a <c>CacheItem</c> for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<returns>The <c>CacheItem</c>.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.GetCacheItemInternal(System.String,System.String)">
|
||||
<summary>
|
||||
Gets a <c>CacheItem</c> for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<param name="region">The cache region.</param>
|
||||
<returns>The <c>CacheItem</c>.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.PutInternalPrepared(CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Puts the <paramref name="item"/> into the cache. If the item exists it will get updated
|
||||
with the new value. If the item doesn't exist, the item will be added to the cache.
|
||||
</summary>
|
||||
<param name="item">The <c>CacheItem</c> to be added to the cache.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.RemoveInternal(System.String)">
|
||||
<summary>
|
||||
Removes a value from the cache for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was found and removed from the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.RemoveInternal(System.String,System.String)">
|
||||
<summary>
|
||||
Removes a value from the cache for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<param name="region">The cache region.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was found and removed from the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
@@ -0,0 +1,140 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>CacheManager.SystemRuntimeCaching</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:CacheManager.Core.ConfigurationBuilderExtensions">
|
||||
<summary>
|
||||
Extensions for the configuration builder specific to System.Runtime.Caching cache handle.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithSystemRuntimeCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart,System.String)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1" /> using a <see cref="T:System.Runtime.Caching.MemoryCache"/> instance with the given <paramref name="instanceName"/>.
|
||||
The named cache instance can be configured via <c>app/web.config</c> <c>system.runtime.caching</c> section.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<param name="instanceName">The name to be used for the <see cref="T:System.Runtime.Caching.MemoryCache"/> instance.</param>
|
||||
<returns>The builder part.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown if handleName is null.</exception>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithSystemRuntimeCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1" /> using a <see cref="T:System.Runtime.Caching.MemoryCache"/>.
|
||||
The name of the cache instance will be 'default'.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<returns>The builder part.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.Core.ConfigurationBuilderExtensions.WithSystemRuntimeCacheHandle(CacheManager.Core.ConfigurationBuilderCachePart,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Adds a <see cref="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1" /> using a <see cref="T:System.Runtime.Caching.MemoryCache"/> instance with the given <paramref name="instanceName"/>.
|
||||
The named cache instance can be configured via <c>app/web.config</c> <c>system.runtime.caching</c> section.
|
||||
</summary>
|
||||
<param name="part">The builder part.</param>
|
||||
<param name="instanceName">The name to be used for the cache instance.</param>
|
||||
<param name="isBackPlateSource">Set this to true if this cache handle should be the source of the back plate.
|
||||
This setting will be ignored if no back plate is configured.</param>
|
||||
<returns>
|
||||
The builder part.
|
||||
</returns>
|
||||
<exception cref="T:System.ArgumentNullException">If part is null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="instanceName"/> is null.</exception>
|
||||
</member>
|
||||
<member name="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1">
|
||||
<summary>
|
||||
Simple implementation for the <see cref="T:System.Runtime.Caching.MemoryCache"/>.
|
||||
</summary>
|
||||
<typeparam name="TCacheValue">The type of the cache value.</typeparam>
|
||||
<remarks>
|
||||
Although the MemoryCache doesn't support regions nor a RemoveAll/Clear method, we will
|
||||
implement it via cache dependencies.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.#ctor(CacheManager.Core.CacheManagerConfiguration,CacheManager.Core.CacheHandleConfiguration,CacheManager.Core.Logging.ILoggerFactory)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1"/> class.
|
||||
</summary>
|
||||
<param name="managerConfiguration">The manager configuration.</param>
|
||||
<param name="configuration">The cache handle configuration.</param>
|
||||
<param name="loggerFactory">The logger factory.</param>
|
||||
</member>
|
||||
<member name="P:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.CacheSettings">
|
||||
<summary>
|
||||
Gets the cache settings.
|
||||
</summary>
|
||||
<value>The cache settings.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.Count">
|
||||
<summary>
|
||||
Gets the number of items the cache handle currently maintains.
|
||||
</summary>
|
||||
<value>The count.</value>
|
||||
</member>
|
||||
<member name="P:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.Logger">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.Clear">
|
||||
<summary>
|
||||
Clears this cache, removing all items in the base cache and all regions.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.ClearRegion(System.String)">
|
||||
<summary>
|
||||
Clears the cache region, removing all items from the specified <paramref name="region"/> only.
|
||||
</summary>
|
||||
<param name="region">The cache region.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.AddInternalPrepared(CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Adds a value to the cache.
|
||||
</summary>
|
||||
<param name="item">The <c>CacheItem</c> to be added to the cache.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was not already added to the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.GetCacheItemInternal(System.String)">
|
||||
<summary>
|
||||
Gets a <c>CacheItem</c> for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<returns>The <c>CacheItem</c>.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.GetCacheItemInternal(System.String,System.String)">
|
||||
<summary>
|
||||
Gets a <c>CacheItem</c> for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<param name="region">The cache region.</param>
|
||||
<returns>The <c>CacheItem</c>.</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.PutInternalPrepared(CacheManager.Core.CacheItem{`0})">
|
||||
<summary>
|
||||
Puts the <paramref name="item"/> into the cache. If the item exists it will get updated
|
||||
with the new value. If the item doesn't exist, the item will be added to the cache.
|
||||
</summary>
|
||||
<param name="item">The <c>CacheItem</c> to be added to the cache.</param>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.RemoveInternal(System.String)">
|
||||
<summary>
|
||||
Removes a value from the cache for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was found and removed from the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1.RemoveInternal(System.String,System.String)">
|
||||
<summary>
|
||||
Removes a value from the cache for the specified key.
|
||||
</summary>
|
||||
<param name="key">The key being used to identify the item within the cache.</param>
|
||||
<param name="region">The cache region.</param>
|
||||
<returns>
|
||||
<c>true</c> if the key was found and removed from the cache, <c>false</c> otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
lib/EnyimMemcached.2.13/EnyimMemcached.2.13.nupkg
Normal file
BIN
lib/EnyimMemcached.2.13/EnyimMemcached.2.13.nupkg
Normal file
Binary file not shown.
BIN
lib/EnyimMemcached.2.13/lib/net35/Enyim.Caching.dll
Normal file
BIN
lib/EnyimMemcached.2.13/lib/net35/Enyim.Caching.dll
Normal file
Binary file not shown.
BIN
lib/EnyimMemcached.2.13/lib/net35/Enyim.Caching.pdb
Normal file
BIN
lib/EnyimMemcached.2.13/lib/net35/Enyim.Caching.pdb
Normal file
Binary file not shown.
2032
lib/EnyimMemcached.2.13/lib/net35/Enyim.Caching.xml
Normal file
2032
lib/EnyimMemcached.2.13/lib/net35/Enyim.Caching.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/HttpWeb/RestSharp.dll
Normal file
BIN
lib/HttpWeb/RestSharp.dll
Normal file
Binary file not shown.
BIN
lib/HttpWeb/RestSharp.pdb
Normal file
BIN
lib/HttpWeb/RestSharp.pdb
Normal file
Binary file not shown.
2897
lib/HttpWeb/RestSharp.xml
Normal file
2897
lib/HttpWeb/RestSharp.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/M2Mqtt.Net/M2Mqtt.Net.dll
Normal file
BIN
lib/M2Mqtt.Net/M2Mqtt.Net.dll
Normal file
Binary file not shown.
BIN
lib/M2Mqtt.Net/M2Mqtt.Net.pdb
Normal file
BIN
lib/M2Mqtt.Net/M2Mqtt.Net.pdb
Normal file
Binary file not shown.
BIN
lib/Memcached/Commons.dll
Normal file
BIN
lib/Memcached/Commons.dll
Normal file
Binary file not shown.
BIN
lib/Memcached/ICSharpCode.SharpZipLib.dll
Normal file
BIN
lib/Memcached/ICSharpCode.SharpZipLib.dll
Normal file
Binary file not shown.
BIN
lib/Memcached/Memcached.ClientLibrary.dll
Normal file
BIN
lib/Memcached/Memcached.ClientLibrary.dll
Normal file
Binary file not shown.
BIN
lib/Memcached/log4net.dll
Normal file
BIN
lib/Memcached/log4net.dll
Normal file
Binary file not shown.
BIN
lib/Microsoft.AspNet.SignalR.Client.dll
Normal file
BIN
lib/Microsoft.AspNet.SignalR.Client.dll
Normal file
Binary file not shown.
BIN
lib/MvcFckEditor/MvcFckEditor.dll
Normal file
BIN
lib/MvcFckEditor/MvcFckEditor.dll
Normal file
Binary file not shown.
BIN
lib/NHibernate/Antlr3.Runtime.dll
Normal file
BIN
lib/NHibernate/Antlr3.Runtime.dll
Normal file
Binary file not shown.
BIN
lib/NHibernate/Bamboo.Prevalence.Util.dll
Normal file
BIN
lib/NHibernate/Bamboo.Prevalence.Util.dll
Normal file
Binary file not shown.
BIN
lib/NHibernate/Bamboo.Prevalence.dll
Normal file
BIN
lib/NHibernate/Bamboo.Prevalence.dll
Normal file
Binary file not shown.
BIN
lib/NHibernate/HibernatingRhinos.Profiler.Appender.dll
Normal file
BIN
lib/NHibernate/HibernatingRhinos.Profiler.Appender.dll
Normal file
Binary file not shown.
BIN
lib/NHibernate/Iesi.Collections.dll
Normal file
BIN
lib/NHibernate/Iesi.Collections.dll
Normal file
Binary file not shown.
BIN
lib/NHibernate/LinFu.DynamicProxy.dll
Normal file
BIN
lib/NHibernate/LinFu.DynamicProxy.dll
Normal file
Binary file not shown.
BIN
lib/NHibernate/NHibernate.ByteCode.LinFu.dll
Normal file
BIN
lib/NHibernate/NHibernate.ByteCode.LinFu.dll
Normal file
Binary file not shown.
BIN
lib/NHibernate/NHibernate.Caches.Prevalence.dll
Normal file
BIN
lib/NHibernate/NHibernate.Caches.Prevalence.dll
Normal file
Binary file not shown.
BIN
lib/NHibernate/NHibernate.Caches.SysCache2.dll
Normal file
BIN
lib/NHibernate/NHibernate.Caches.SysCache2.dll
Normal file
Binary file not shown.
BIN
lib/NHibernate/NHibernate.dll
Normal file
BIN
lib/NHibernate/NHibernate.dll
Normal file
Binary file not shown.
BIN
lib/NHibernate/Remotion.Data.Linq.dll
Normal file
BIN
lib/NHibernate/Remotion.Data.Linq.dll
Normal file
Binary file not shown.
177
lib/NPOI/LICENSE
Normal file
177
lib/NPOI/LICENSE
Normal file
@@ -0,0 +1,177 @@
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction, and
|
||||
distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by the copyright
|
||||
owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all other entities
|
||||
that control, are controlled by, or are under common control with that entity.
|
||||
For the purposes of this definition, "control" means (i) the power, direct or
|
||||
indirect, to cause the direction or management of such entity, whether by
|
||||
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity exercising
|
||||
permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications, including
|
||||
but not limited to software source code, documentation source, and configuration
|
||||
files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical transformation or
|
||||
translation of a Source form, including but not limited to compiled object code,
|
||||
generated documentation, and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or Object form, made
|
||||
available under the License, as indicated by a copyright notice that is included
|
||||
in or attached to the work (an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object form, that
|
||||
is based on (or derived from) the Work and for which the editorial revisions,
|
||||
annotations, elaborations, or other modifications represent, as a whole, an
|
||||
original work of authorship. For the purposes of this License, Derivative Works
|
||||
shall not include works that remain separable from, or merely link (or bind by
|
||||
name) to the interfaces of, the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including the original version
|
||||
of the Work and any modifications or additions to that Work or Derivative Works
|
||||
thereof, that is intentionally submitted to Licensor for inclusion in the Work
|
||||
by the copyright owner or by an individual or Legal Entity authorized to submit
|
||||
on behalf of the copyright owner. For the purposes of this definition,
|
||||
"submitted" means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems, and
|
||||
issue tracking systems that are managed by, or on behalf of, the Licensor for
|
||||
the purpose of discussing and improving the Work, but excluding communication
|
||||
that is conspicuously marked or otherwise designated in writing by the copyright
|
||||
owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
|
||||
of whom a Contribution has been received by Licensor and subsequently
|
||||
incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License.
|
||||
|
||||
Subject to the terms and conditions of this License, each Contributor hereby
|
||||
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
||||
irrevocable copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the Work and such
|
||||
Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License.
|
||||
|
||||
Subject to the terms and conditions of this License, each Contributor hereby
|
||||
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
||||
irrevocable (except as stated in this section) patent license to make, have
|
||||
made, use, offer to sell, sell, import, and otherwise transfer the Work, where
|
||||
such license applies only to those patent claims licensable by such Contributor
|
||||
that are necessarily infringed by their Contribution(s) alone or by combination
|
||||
of their Contribution(s) with the Work to which such Contribution(s) was
|
||||
submitted. If You institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work or a
|
||||
Contribution incorporated within the Work constitutes direct or contributory
|
||||
patent infringement, then any patent licenses granted to You under this License
|
||||
for that Work shall terminate as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution.
|
||||
|
||||
You may reproduce and distribute copies of the Work or Derivative Works thereof
|
||||
in any medium, with or without modifications, and in Source or Object form,
|
||||
provided that You meet the following conditions:
|
||||
|
||||
You must give any other recipients of the Work or Derivative Works a copy of
|
||||
this License; and
|
||||
You must cause any modified files to carry prominent notices stating that You
|
||||
changed the files; and
|
||||
You must retain, in the Source form of any Derivative Works that You distribute,
|
||||
all copyright, patent, trademark, and attribution notices from the Source form
|
||||
of the Work, excluding those notices that do not pertain to any part of the
|
||||
Derivative Works; and
|
||||
If the Work includes a "NOTICE" text file as part of its distribution, then any
|
||||
Derivative Works that You distribute must include a readable copy of the
|
||||
attribution notices contained within such NOTICE file, excluding those notices
|
||||
that do not pertain to any part of the Derivative Works, in at least one of the
|
||||
following places: within a NOTICE text file distributed as part of the
|
||||
Derivative Works; within the Source form or documentation, if provided along
|
||||
with the Derivative Works; or, within a display generated by the Derivative
|
||||
Works, if and wherever such third-party notices normally appear. The contents of
|
||||
the NOTICE file are for informational purposes only and do not modify the
|
||||
License. You may add Your own attribution notices within Derivative Works that
|
||||
You distribute, alongside or as an addendum to the NOTICE text from the Work,
|
||||
provided that such additional attribution notices cannot be construed as
|
||||
modifying the License.
|
||||
You may add Your own copyright statement to Your modifications and may provide
|
||||
additional or different license terms and conditions for use, reproduction, or
|
||||
distribution of Your modifications, or for any such Derivative Works as a whole,
|
||||
provided Your use, reproduction, and distribution of the Work otherwise complies
|
||||
with the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions.
|
||||
|
||||
Unless You explicitly state otherwise, any Contribution intentionally submitted
|
||||
for inclusion in the Work by You to the Licensor shall be under the terms and
|
||||
conditions of this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify the terms of
|
||||
any separate license agreement you may have executed with Licensor regarding
|
||||
such Contributions.
|
||||
|
||||
6. Trademarks.
|
||||
|
||||
This License does not grant permission to use the trade names, trademarks,
|
||||
service marks, or product names of the Licensor, except as required for
|
||||
reasonable and customary use in describing the origin of the Work and
|
||||
reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty.
|
||||
|
||||
Unless required by applicable law or agreed to in writing, Licensor provides the
|
||||
Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
|
||||
including, without limitation, any warranties or conditions of TITLE,
|
||||
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
|
||||
solely responsible for determining the appropriateness of using or
|
||||
redistributing the Work and assume any risks associated with Your exercise of
|
||||
permissions under this License.
|
||||
|
||||
8. Limitation of Liability.
|
||||
|
||||
In no event and under no legal theory, whether in tort (including negligence),
|
||||
contract, or otherwise, unless required by applicable law (such as deliberate
|
||||
and grossly negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special, incidental,
|
||||
or consequential damages of any character arising as a result of this License or
|
||||
out of the use or inability to use the Work (including but not limited to
|
||||
damages for loss of goodwill, work stoppage, computer failure or malfunction, or
|
||||
any and all other commercial damages or losses), even if such Contributor has
|
||||
been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability.
|
||||
|
||||
While redistributing the Work or Derivative Works thereof, You may choose to
|
||||
offer, and charge a fee for, acceptance of support, warranty, indemnity, or
|
||||
other liability obligations and/or rights consistent with this License. However,
|
||||
in accepting such obligations, You may act only on Your own behalf and on Your
|
||||
sole responsibility, not on behalf of any other Contributor, and only if You
|
||||
agree to indemnify, defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason of your
|
||||
accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work
|
||||
|
||||
To apply the Apache License to your work, attach the following boilerplate
|
||||
notice, with the fields enclosed by brackets "{}" replaced with your own
|
||||
identifying information. (Don't include the brackets!) The text should be
|
||||
enclosed in the appropriate comment syntax for the file format. We also
|
||||
recommend that a file or class name and description of purpose be included on
|
||||
the same "printed page" as the copyright notice for easier identification within
|
||||
third-party archives.
|
||||
133
lib/NPOI/Read Me.txt
Normal file
133
lib/NPOI/Read Me.txt
Normal file
@@ -0,0 +1,133 @@
|
||||
================
|
||||
* Introduction *
|
||||
================
|
||||
This project is the .NET port of POI project at http://poi.apache.org/. POI is an open source java project
|
||||
which can help you read/write xls, doc, ppt files. It has a wide application.
|
||||
For example, you can use it a to generate a Excel report without Microsoft Office suite installed on your
|
||||
server and more efficient than call Microsoft Excel ActiveX at background; you can also use it to extract
|
||||
text from Office documents to help you implement full-text indexing feature (most of time this feature is
|
||||
used to create search engines).
|
||||
|
||||
==================
|
||||
* NPOI Website *
|
||||
==================
|
||||
https://github.com/tonyqus/npoi/ (Latest source code available)
|
||||
http://npoi.googlecode.com (No latest source code available)
|
||||
http://npoi.codeplex.com (No latest source code available)
|
||||
http://tonyqus.sinaapp.com (Official Tutorial in Chinese)
|
||||
|
||||
======================
|
||||
* System Requirement *
|
||||
======================
|
||||
VS2010 with .NET 2.0 or .NET 4.0
|
||||
VS2005 or VS2008 with .NET 2.0 Runtime (SP1)
|
||||
vs2003 with .NET 1.1
|
||||
medium trust environment in ASP.NET
|
||||
|
||||
=================
|
||||
* NPOI on SNS *
|
||||
=================
|
||||
Twitter: http://twitter.com/tonyqus
|
||||
User Group[Linkedin]: http://www.linkedin.com/groups/NPOI-User-Group-6655065
|
||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: http://t.sina.com.cn/npoi
|
||||
<EFBFBD><EFBFBD>ҵ<EFBFBD>ͻ<EFBFBD>QQȺ: 116053476
|
||||
<EFBFBD><EFBFBD><EFBFBD>˿ͻ<EFBFBD>QQȺ<EFBFBD><EFBFBD>20144214
|
||||
|
||||
================
|
||||
* Team Members *
|
||||
================
|
||||
Tony Qu - coodinator, developer
|
||||
-------------------------------
|
||||
From: Shanghai, China
|
||||
Participated since Sep, 2008
|
||||
Time Zone: GMT+8
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
NPOI 1.2.1
|
||||
--------------------------------------------------------------------------------
|
||||
H<EFBFBD><EFBFBD>seyin T<><54>fekcilerli - developer
|
||||
--------------------
|
||||
From: Istanbul, Turkey
|
||||
Participated since Nov, 2008
|
||||
Time Zone: GMT+2
|
||||
Main Contribution: POIFS Browser 1.0
|
||||
|
||||
aTao Xiang - Technical writer
|
||||
-----------
|
||||
From: China
|
||||
Participated since Aug, 2009
|
||||
Time Zone: GMT+8
|
||||
Main Contribution: NPOI 1.2 Chinese Tutorial
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
NPOI 1.2.3 - NPOI 1.2.5
|
||||
--------------------------------------------------------------------------------
|
||||
Antony - developer
|
||||
------------------------------
|
||||
From: Guangzhou, China
|
||||
Time Zone: GMT+8
|
||||
Main Contribution: main code,bug fixing ,Excel2Html, Word2Html
|
||||
|
||||
Christian Leutloff - developer
|
||||
------------------------------
|
||||
From: Germany
|
||||
Time Zone: GMT+1
|
||||
Main Contribution: fix FXCop warnings, OOXML
|
||||
|
||||
Jeff Stedfast - developer
|
||||
------------------------------
|
||||
From: Cambridge, MA, USA
|
||||
Time Zone: GMT
|
||||
Main contribution: Mono version of NPOI, naming conversion
|
||||
|
||||
Leon Wang - developer
|
||||
-----------------------------
|
||||
From: Xi'an, China
|
||||
Time Zone: GMT+8
|
||||
Main contribution: NPOIFS/POIFS
|
||||
|
||||
NPOI 2.0
|
||||
--------------------------------------------------------------------------------
|
||||
Tony Qu - chief developer
|
||||
-------------------------------
|
||||
From: Shanghai, China
|
||||
Time Zone: GMT+8
|
||||
Main Contribution: OpenXml4Net, OpenXmlFormats, NPOI.XSSF, NPOI.XWPF implementation
|
||||
|
||||
Antony - developer
|
||||
------------------------------
|
||||
From: Guangzhou, China
|
||||
Time Zone: GMT+8
|
||||
Main Contribution: XWPF implementation, OpenXmlFormats
|
||||
|
||||
Christian Leutloff - developer
|
||||
------------------------------
|
||||
From: Germany
|
||||
Time Zone: GMT+1
|
||||
Main Contribution: OpenXmlFormats, Excel 2007 comment read
|
||||
|
||||
Jeff Stedfast - developer
|
||||
------------------------------
|
||||
From: Cambridge, MA, USA
|
||||
Time Zone: GMT
|
||||
Main contribution: Mono version of NPOI, enumeration changes and compilation optimization
|
||||
|
||||
Paul Kratt - developer
|
||||
------------------------------
|
||||
From: Greater Milwaukee Area, Wisconsin, USA
|
||||
Time Zone: GMT
|
||||
Main contribution: CopyTo, CopySheet functions in HSSFSheet
|
||||
|
||||
NPOI 2.1
|
||||
--------------------------------------------------------------------------------
|
||||
Tony Qu - main contributor
|
||||
Antony - fix some poi bugs
|
||||
|
||||
Phil Rykoff - developer
|
||||
------------------------------
|
||||
Main contribution: XSSF bug fixing and feature implement
|
||||
|
||||
==================
|
||||
* How to join us *
|
||||
==================
|
||||
If you are interested in this project and want to join me, please write mail to tonyqus (at) gmail.com
|
||||
447
lib/NPOI/Release Notes.txt
Normal file
447
lib/NPOI/Release Notes.txt
Normal file
@@ -0,0 +1,447 @@
|
||||
2.1.3.1 (Feb., 2015)
|
||||
Bug Fixes
|
||||
a. fix word serialization issues
|
||||
b. fix CloneStyleFrom issue
|
||||
c. Fix vertical alignment default value for XSSFCell
|
||||
d. fix setAutoFilter change range issue
|
||||
e. fix EDate function
|
||||
f. fix FormatException in FormulaParser
|
||||
g. fix Comment random Shape issue (comment serialization issue)
|
||||
h. fix not be able to unlock the cell issue
|
||||
|
||||
POI BUG FIXES
|
||||
55729 - DataFormatter should format Error cells, returning the Excel error string
|
||||
49237 - HSSF Row Style XfIndex is 12 not 16 bits of data
|
||||
54607 - NullPointerException in XSSFSheet.getTopRow() when the top row is 1
|
||||
55745 - fix handling of tables in XSSF if there are comments as well
|
||||
54673 - Simple wildcard support in HLOOKUP, VOOLKUP, MATCH, COUNTIF
|
||||
55047 - REPT formula support
|
||||
55042 - COMPLEX formula support
|
||||
55041 - CODE formula support
|
||||
54508 - EDATE formula support
|
||||
53966 - IfError support (from Analysis Toolpak)
|
||||
54402 - IfError handling of indirect references
|
||||
|
||||
New feature
|
||||
a. Add ReplaceText to XWPFParagraph and XWPFRun
|
||||
b. adjust ExcelExtractor interface
|
||||
c. Improving comment missing handling in HSSFSheet
|
||||
d. copy hyperlink in CopySheet and fix some bugs
|
||||
e. Implement ChartSheet in OpenXmlFormats
|
||||
f. Implement shrinktofit for XSSF
|
||||
|
||||
2.1.3 (Dec., 2014)
|
||||
Bug Fixes
|
||||
a. fix 2 charts insert in the same sheet issue
|
||||
b. fix a lot of Excel 2007 serialization issues
|
||||
c. fix some Word 2007 serialiation issues
|
||||
d. fix RemoteSheetAt bug
|
||||
e. support changing background in XWPF
|
||||
f. fix Uri-related issues on Mono
|
||||
|
||||
New examples
|
||||
SetIsRightToLeftInXlsx - show how to use IsRightToLeft property
|
||||
ExtractPicturesFromXlsx - show how to extract pictures from Excel 2007 file
|
||||
SetRowStyle - show how to set whole row style with simple code
|
||||
|
||||
2.1.1 (Jun., 2014)
|
||||
New Features
|
||||
a. XSSFSheet.CopySheet
|
||||
b. Excel2Html for XSSF and HSSF
|
||||
c. insert picture in word 2007
|
||||
d. Implement IfError function in formula engine
|
||||
|
||||
Bug Fixes
|
||||
a. fix conditional formatting issue
|
||||
b. fix ctFont order issue
|
||||
c. fix vertical alignment issue in XSSF
|
||||
d. add IndexedColors to NPOI.SS.UserModel
|
||||
e. fix decimal point issue in non-English culture
|
||||
f. fix SetMargin issue in XSSF
|
||||
g.fix multiple images insert issue in XSSF
|
||||
h.fix rich text style missing issue in XSSF
|
||||
i. fix cell comment shape (big arrow) in XSSF
|
||||
j. WorkbookFactory for Excel 2007 doesn't occupy file.
|
||||
k. fix XSSFCell.IsMergedCell
|
||||
l. fix incorrect page margin value due to different culture
|
||||
m. fix HSSFSheet.CopyTo doesn't copy rich text in cells
|
||||
n. fix scroll bar and tabs missing in previous 2.1 release
|
||||
|
||||
New examples
|
||||
a. XSSF.DownloadXlsx
|
||||
b. XSSF.ConditionFormats
|
||||
c. XSSF.LineChart
|
||||
d. XWPF.InsertPicturesInWord
|
||||
|
||||
2.0 [v2.0.6] (Jan., 2014)
|
||||
a. fix a lot of xml serialization issue for OOXML (2.0.5 will corrupt some xlsx and docx files)
|
||||
b. implement XSSFCell.IsMergedCell
|
||||
c. IWorkbook implements IList<ISheet>
|
||||
|
||||
2.0 Beta 2 [v2.0.5] (Dec, 2013)
|
||||
New features
|
||||
a. Support Scatter chart in XSSF (xlsx) (other chart types are not supported yet)
|
||||
b. Extract pictures from Excel (xlsx)
|
||||
c. XWPF becomes stabler than before
|
||||
d. Able to support xml:space="preserve" attribute
|
||||
e. Add mono assembly in the release package
|
||||
f. file generated by NPOI will contain NPOI tags in custom properties to identify the generator
|
||||
g. Adjust some XWPF interfaces
|
||||
|
||||
Sample changes
|
||||
a. add new samples like BigGridTest, WritePerformanceTest to test performance
|
||||
b. add ScatterChart to show how to create Scatter chart
|
||||
c. add LinkedDropDownList for both XSSF and HSSF
|
||||
d. add MonthlySalaryReport to show how to use formula in XSSF
|
||||
e. add CreateCustomProperties to show how to use custom props in XSSF and XWPF
|
||||
|
||||
Bug fixes
|
||||
a. fix shift row issue in XSSFSheet
|
||||
b. fix performance issue due to XmlSerializer. NPOI is getting rid of XmlSerializer.
|
||||
c. reading/writing CT_Drawing
|
||||
d. fix ddd pattern issue in CellDateFormatter
|
||||
e. Change some common interfaces in NPOI.SS
|
||||
f. fix OutOfMemory issue in MemoryPackagePart
|
||||
g. Able to read AbsoluteAnchor, OneCellAnchor, TwoCellAnchor in drawing.xml
|
||||
h. Formula will be calculated automatically after generation
|
||||
i. improve performance for XSSF while creating new rows
|
||||
For detail, please read https://npoi.codeplex.com/discussions/443655
|
||||
j. fix name encoding issue of custom properties in HSSF
|
||||
For detail, please read https://npoi.codeplex.com/workitem/12296
|
||||
k. fix exception in HSSFRows.RemoveAllCells
|
||||
l. fix CellStyle Hashtable comparison issue in class HSSFCellUtil. This can help prevent over 4000 styles issue from code.
|
||||
m. Fix globalization issue in ExpandedDouble
|
||||
|
||||
=========================================================================
|
||||
|
||||
2.0 Beta 1 [v2.0.1] (Feb, 2013)
|
||||
New features
|
||||
a. Copy rows, columns inside a sheet
|
||||
b. Copy sheet between workbooks (contributed by Paul Kratt)
|
||||
c. insert rows and column inside a sheet
|
||||
d. OpenXml4Net is stable and ready for use
|
||||
e. Support new Excel functions such as RATE, RANK, ISERR
|
||||
f. Support converting from Excel to Html
|
||||
g. POIFS Browser supports Chart records
|
||||
|
||||
Example changes
|
||||
a. Use MemoryStream.WriteTo instead in ExportXlsToDownload in order to avoid out of memory exception
|
||||
b. add new examples like CalendarDemo, BusinessPlan, CopySheet
|
||||
|
||||
NPOI Bug Fixes
|
||||
Issue with 2.0 Beta: Get an non-Closing Element error
|
||||
http://npoi.codeplex.com/workitem/11085
|
||||
Npoi 2 error in NumericCellValue (XSSFCell)
|
||||
http://npoi.codeplex.com/workitem/11083
|
||||
[HSSF]Comment is not saved correctly while using a xls template with comment
|
||||
http://npoi.codeplex.com/workitem/11169
|
||||
Access issue creating worksheet
|
||||
http://npoi.codeplex.com/workitem/11383
|
||||
Error when running NPOI with Mono C# compiler version 2.0.1.0
|
||||
http://npoi.codeplex.com/workitem/4547
|
||||
|
||||
POI Bug Fixes
|
||||
53282 - Avoid exception when parsing OPC relationships with non-breaking spaces(poi-developers)
|
||||
54016 - Avoid exception when parsing workbooks with DConRefRecord in row aggregate(poi-developers)
|
||||
53404 - Fixed compatibility bug with modifying xls files created by POI-3.6 and earlier(poi-developers)
|
||||
53763 - avoid style mess when using HSSFOptimiser (poi-developers)
|
||||
53974 - Avoid NPE when constructing HSSFWorbook on Google App Engine(poi-developers)
|
||||
53950 - fixed setForceFormulaRecalculation to reset workbook-level "manual" flag(poi-developers)
|
||||
52211 - avoid unnessary re-coverting content types to US-ASCII, it can cause exceptions on ibm mainframes(poi-developers)
|
||||
HSSFOptimiser will now also tidy away un-used cell styles, in addition to duplicate styles(poi-developers)
|
||||
53434 - Subtotal is not return correct value. (poi-developers)
|
||||
53144 - First comment not cloned after cloneSheet() (poi-developers)
|
||||
53028 - Broken auto fit row height in the cells with word wrap (poi-developers)
|
||||
53010 - GSoC2012? Improve drawing support in HSSF (poi-developers)
|
||||
52764 - Unmodified cell comments disappear after HSSFWorkbook.write (poi-developers)
|
||||
51676 - Using drawingPatriarch.createCellComment(anchor) leads to File error: data may have been lost (poi-developers)
|
||||
51455 - It would be really nice to be able to set the background picture of a comment (poi-developers)
|
||||
48989 - If we have a comment but the row is not created we will not be able to get it. (poi-developers)
|
||||
48873 - Comments not saving in XLS files with collapsible columns (poi-developers)
|
||||
46143 - setLineStyleColor for comments donot work (poi-developers)
|
||||
53699 - Patch to correct BorderStyle? enum positions (poi-developers)
|
||||
53644 - XLS formula bugfix (CalFieldFunc?) + WeekDay? addon (poi-developers)
|
||||
53446 - Fixed some problems extracting PNGs (poi-developers)
|
||||
53204 - Improved performanceof PageSettingsBlock? in HSSF (poi-developers)
|
||||
53500 - Getter for repeating rows and columns(poi-developers)
|
||||
53476 - Support Complex Name in formulas (poi-developers)
|
||||
53414 - properly update sheet dimensions when adding column (poi-developers)
|
||||
Add File based constructor to OPCPackage, alongside existing String one (which constructed a File from the string internally)(poi-developers)
|
||||
53389 - Handle formatting General and @ formats even if a locale is prefixed to them(poi-developers)
|
||||
53058 - Utility for representing drawings contained in a binary Excel file as a XML tree(poi-developers)
|
||||
48528 - support negative arguments to the DATE() function(poi-developers)
|
||||
53101 - fixed evaluation of SUM over cell range > 255(poi-developers)~
|
||||
52928 - DateFormatConverter?: an utility to convert instances of java.text.DateFormat? to Excel format patterns(poi-developers)
|
||||
52895 - show SSTIndex instead of XFIndex in LabelSSTRecord.toString()(poi-developers)
|
||||
52818 - Added implementation for RANK()(poi-developers)
|
||||
51564 - support for enforcing fields update in XWPF(poi-developers) 51673 - support grouping rows in SXSSF(poi-developers)
|
||||
51780 - support replacement of content types in OPC packages (poi-developers)
|
||||
52057 - updated formula test framework to be aware of recently added Functions (poi-developers)
|
||||
52574 - support setting header / footer page margins in HSSF(poi-developers)
|
||||
52583 - fixed WorkbookUtil#createSafeSheetName? to escape colon (poi-developers)
|
||||
52708 - misc improvements in CellFormat? (poi-developers)
|
||||
52690 - added a getter for length of encrypted data in Ecma and Agile decryptors(poi-developers)
|
||||
allow runtime registration of functions in FormulaEvaluator?(poi-developers)
|
||||
52665 - When reading from a ZipFileZipEntrySource? that has already been closed, give IllegalArgumentException? rather than NPE(poi-developers)
|
||||
52385 - avoid trancated array and vector data when reading OLE properties(poi-developers)
|
||||
51498 - fixed evaluation of blank cells in COUNTIF(poi-developers)
|
||||
52576 - support changing external file references in HSSFWorkbook(poi-developers)
|
||||
49896 - support external references in FormulaRenderer?(poi-developers)
|
||||
52527 - avoid exception when matching shared formula records in HSSF(poi-developers)
|
||||
52568 - Added methods to set/get an XWPFRun's text color(poi-developers)
|
||||
52566 - Added methods to set/get vertical alignment and color in XWPFTableCell(poi-developers)
|
||||
52562 - Added methods to get/set a table row's Can't Split and Repeat Header attributes in XWPF(poi-developers)
|
||||
52561 - Added methods to set table inside borders and cell margins in XWPF(poi-developers)
|
||||
52569 - Support DConRefRecord in HSSF(poi-developers)
|
||||
52575 - added an option to ignore missing workbook references in formula evaluator(poi-developers)
|
||||
52540 - Relax the M4.1 constraint on reading OOXML files, as some Office produced ones do have 2 Core Properties, despite the specification explicitly forbidding this(poi-developers)
|
||||
52462 - Added implementation for SUMIFS()(poi-developers)
|
||||
52449 - Support writing XWPF documents with glossaries (Glossaries are not yet supported, but can now be written out again without changes)(poi-developers)
|
||||
52438 - Update CellDateFormatter? to handle times without seconds(poi-developers)
|
||||
52389 - Support ?/? as well as #/# fractions, and tighten DataFormatter? rules for fraction matching(poi-developers)
|
||||
52378 - Support for WORKDAY and NETWORKDAYS functions(poi-developers)
|
||||
52349 - Merge the logic between the TEXT function and DataFormatter?(poi-developers)
|
||||
52349 - Correctly support excel style date format strings in the TEXT function(poi-developers)
|
||||
52369 - XSSFExcelExtractor should format numeric cells based on the format strings applied to them(poi-developers)
|
||||
52369 - Event based XSSF parsing should handle formatting of formula values in XSSFSheetXMLHandler(poi-developers)
|
||||
52348 - Avoid exception when creating cell style in a workbook that has an empty xf table(poi-developers)
|
||||
52314 - enhanced SheetUtil?.getColumnWidth(poi-developers)
|
||||
51875 - More XSSF new-line in formula support(poi-developers)
|
||||
POIFS EntryUtils?.copyNodes(POFS,POIFS) now uses FilteringDirectoryNode?, so can exclude from copying nodes not just directly under the root(poi-developers)
|
||||
POIFS Helper FilteringDirectoryNode?, which wraps a DirectoryEntry? and allows certain parts to be ignored(poi-developers)
|
||||
52190 - null check on XWPF setFontFamily(poi-developers)
|
||||
52050 - Support for the Excel RATE function(poi-developers)
|
||||
51949 - Avoid NPE on double close of ZipFileZipEntrySource?(poi-developers)
|
||||
51950 - XWPF fix for footnotes not always being present in a document(poi-developers)
|
||||
51963 - Correct AreaReference? handling of references containing a sheet name which includes a comma(poi-developers)
|
||||
51834 - Opening and Writing .doc file results in corrupt document(poi-developers)
|
||||
Allow the passing of a File object to WorkbookFactory?.create, which permits lower memory processing than the InputStream? version(poi-developers)
|
||||
51850 - support creating comments in XSSF on an earlier slide when later ones already have them(poi-developers)
|
||||
New PackagePart? method getRelatedPart(PackageRelationship?) to simplify navigation of relations between OPC Parts(poi-developers)
|
||||
51832 - handle XLS files where the WRITEPROTECT record preceeds the FILEPASS one, rather than following as normal(poi-developers)
|
||||
51809 - correct GTE handling in COUNTIF(poi-developers)
|
||||
51670 - avoid LeftoverDataException? when reading .xls files with invalid LabelRecords?(poi-developers)
|
||||
51196 - prevent NPE in XWPFPicture.getPictureData() (poi-developers)
|
||||
51196 - more progress with Chart APi in XSSF(poi-developers)
|
||||
51785 - Allow XSSF setForceFormulaRecalculation to work with the minimal ooxml-schemas jar(poi-developers)
|
||||
|
||||
=========================================================================
|
||||
|
||||
2.0 Alpha [v2.0.0] (August, 2012)
|
||||
New features
|
||||
a. Implement OpenXml4Net (same as System.Packaging from Microsoft). It supports both .NET 2.0 and .NET 4.0
|
||||
b. Excel 2007 read/write library (NPOI.XSSF)
|
||||
c. Word 2007 read/write library(NPOI.XWPF)
|
||||
d. NPOI.SS namespace becomes the interface shared between XSSF and HSSF
|
||||
e. Load xlsx template and save as new xlsx file (partially supported)
|
||||
f. Diagonal line in cell both in xls and xlsx
|
||||
g. Support isRightToLeft and setRightToLeft on the common spreadsheet Sheet interface, as per existing HSSF support(poi-developers)
|
||||
h. New examples for NPOI.OpenXml4Net(2 examples), NPOI.XSSF (15 examples) and NPOI.XWPF (5 examples)
|
||||
|
||||
=========================================================================
|
||||
|
||||
1.2.5 (April,2012)
|
||||
In this release, we fixed most of the bugs found in POI 3.8 beta 4.
|
||||
|
||||
POI Bug Fixes
|
||||
51535 - correct signed vs unsigned short reading in NDocumentInputStream(poi-developers)
|
||||
50209 - Fixed evaluation of Subtotals to ignore nested subtotals(poi-developers)
|
||||
50401 - fixed EscherProperty to return property name instead of 'unknown' for complex properties (poi-developers)
|
||||
51481 - Fixed autofilters in HSSF to avoid warnings in Excel 2007(poi-developers)
|
||||
51533 - Avoid exception when changing name of a sheet containing shared formulas(poi-developers)
|
||||
46250 - Fixed cloning worksheets with images(poi-developers)
|
||||
51514 - allow HSSFObjectData to work with both POIFS and NPOIFS(poi-developers)
|
||||
51514 - avoid NPE when copying nodes from one HSSF workbook to a new one, when opened from NPOIFS(poi-developers)
|
||||
51504 - avoid NPE when DefaultRowHeight or DefaultColumnWidth records are missing(poi-developers)
|
||||
48294 - Fixed HSSFWorkbook.setSheetOrder() to respect inter-sheet references (poi-developers)
|
||||
51448 - Avoid exception when evaluating workbooks with more than 256 sheets (poi-developers)
|
||||
51458 - Correct BitField wrapping when setting large values(poi-developers)
|
||||
51460 - Improve HSSF performance when loading very long rows, by switching the CellValue array to an iterator(poi-developers)
|
||||
51415 - Fixed Workbook.createSheet(sheetName) to truncate names longer than 31 characters(poi-developers)
|
||||
51332 - Fixed internal IDs of shapes generated by HSSFPatriarch when there are more than 1023 drawing objects (poi-developers)
|
||||
48408 - Improved documentation for Sheet.setColumnWidth (poi-developers)
|
||||
50681 - Avoid exceptions in HSSFDataFormat.getDataFormatString() (poi-developers)
|
||||
50681 - Fixed autosizing columns beyond 255 character limit (poi-developers)
|
||||
51339 - Fixed arithmetic rounding in formula evaluation (poi-developers)
|
||||
51098 - Correctly calculate image width/height, if image fits into one cell(poi-developers)
|
||||
51273 - Formula Value Cache fix for repeated evaluations(poi-developers)
|
||||
51171 - Improved performance of SharedValueManager (poi-developers)
|
||||
51171 - Improved performance of opening large .xls files(poi-developers)
|
||||
51153 - Correct sizing of LbsDataSubRecord with unused padding fields(poi-developers)
|
||||
51143 - NameCommentRecord correction for writing non ASCII strings(poi-developers)
|
||||
51115 - Handle DataFormatter escaping of "." in the same way as "-" and "/"(poi-developers)
|
||||
51100 - Fix IOUtils issue for NPOIFS reading from an InputStream where every block is full(poi-developers)
|
||||
50841 - Improved SpreadSheet DataFormatter to handle scientific notation, invalid dates and format spacers(poi-developers)
|
||||
50939 - ChartEndObjectRecord is supposed to have 6 bytes at the end, but handle it not(poi-developers)
|
||||
50912 - fixed setting named styles to HSSFCells(poi-developers)
|
||||
50779 - fixed RecordFormatException when reading unicode strings with photenic data(poi-developers)
|
||||
50718 - More helpful error message when you try to create a CellReference with #REF!(poi-developers)
|
||||
50786 - Speed up calls to HSSFColor.getIndexHash() by returning a cached, unmodifiable Map. HSSFColor.getModifiableIndexHash() provides access to the old (slow but modifiable) functionality(poi-developers)
|
||||
32903 - Correct XBAT chaining explanation in /poifs/fileformat.html(poi-developers)
|
||||
46664 - When creating HSSF Print Areas, ensure the named range is reference based not value based(poi-developers)
|
||||
50756 - When formatting numbers based on their Cell Style, treat GENERAL the same as the more typical General(poi-developers)
|
||||
fixed HSSFWorkbook.createCellStyle to throw exception if the maximum number of cell styles was exceeded(poi-developers)
|
||||
49928 - allow overridden built-in formats in HSSFCellStyle(poi-developers)
|
||||
50587 - Improved documentation on user-defined functions(poi-developers)
|
||||
50416 - Correct shifting of the first or last row in a sheet by multiple rows(POI-DEVELOPERS)
|
||||
50246 - Properly position GutsRecord when reading HSSF workbooks(POI-DEVELOPERS)
|
||||
50437 - Support passing ranges to NPV()(POI-DEVELOPERS)
|
||||
47405 - Improved performance of RowRecordsAggregate.getStartRowNumberForBlock / getEndRowNumberForBlock(poi-developers)
|
||||
50113 - Remove cell from Calculation Chain after setting cell type to blank (poi-developers)
|
||||
50096 - Fixed evaluation of cell references with column index greater than 255 (poi-developers)
|
||||
49761 - Tolerate Double.NaN when reading .xls files(poi-developers)
|
||||
50211 - Use cached formula result when auto-sizing formula cells(poi-developers)
|
||||
50118 - OLE2 does allow a directory with an empty name, so support this in POIFS(poi-developers)
|
||||
|
||||
NPOI Bug fixes
|
||||
a. CloneSheet with images throws exception
|
||||
b. Comments are still visible even set Visible property to false
|
||||
c. AutoSizeColumn doesn't work as expected
|
||||
d. Reading sheet protected workbook throws exception
|
||||
|
||||
New Features
|
||||
a. Added NPOIFS constructors to most POIDocument classes and their extractors, and more widely deprecated the Document(DirectoryNode, POIFSFileSystem) constructor in favour of the more general Document(DirectoryNode) one
|
||||
b. Added implementation for CLEAN(), CHAR(), ADDRESS(),MROUND(), VAR(), VARP(), IRR()
|
||||
c. Added Support for HOUR, MINUTE and SECOND date formulas
|
||||
d. Support for continued NameRecords, continued ExtSSTRecords
|
||||
e. Support using RecalcIdRecord to trigger a full formula recalculation on load (poi-developers)
|
||||
f. ExternalNameRecord support for DDE Link entries without an operation(poi-developers)
|
||||
g. POIFS Browser: add ability to parse EscherContainer and sub nodes
|
||||
|
||||
|
||||
=========================================================================
|
||||
|
||||
1.2.4 (Nov,2011)
|
||||
In this release, we fixed most of the bugs found in POI 3.6 and POI 3.7.
|
||||
|
||||
NPOI Bug Fixes
|
||||
5157 - HSSFSheet.FitToPage property is added. It doesn't work previously.
|
||||
7271 - Cell formula that has been "dragged" down cannot be read. Patch is applied
|
||||
xxx - Bad padding calculation
|
||||
3804 - NPOI doesn't work with a Excel template with macro
|
||||
|
||||
POI Bug Fixes
|
||||
46547 - ClassCastException in HSSFSheet.shiftRows(...)
|
||||
47363 - Fixed HSSFSheet to allow addition of data validations after sheet protection
|
||||
45066 - sheet encoding size mismatch problems
|
||||
49026 - added implementation for text() (poi-developers)
|
||||
46654 - HSSFRow/RowRecord to properly update cell boundary indexes(POI-DEVELOPERS)
|
||||
46385 - (also patch 46362) fix serialization of StyleRecord with unicode name(POI-DEVELOPERS)
|
||||
47069 - Fixed HSSFSheet#getFirstRowNum and HSSFSheet#getLastRowNum to return correct values after removal of all rows(POI-DEVELOPERS)
|
||||
48325 - bad text 'Page &P of &N' and similar errors when reading in spreadsheets
|
||||
48485 - add extra paper size constans to printsetup, such as a3, b4 and b5(poi-developers)
|
||||
48425 - improved performance of dateutil.iscelldateformatted() (poi-developers)
|
||||
49524 - add vertical text orientation method
|
||||
47001 - Fixed WriteAccessRecord and LinkTable to handle unusual format written by Google Docs(POI-DEVELOPERS)
|
||||
46368 - Fix HSSFRichTextRun and strings longer than 32768 characters(POI-DEVELOPERS)
|
||||
48292 - Support of array formulas
|
||||
49820 - ParagraphProperties.getLvl() returns 0 for both Level 1 and Body text
|
||||
- fixed HSSFWorkbook.createCellStyle to throw exception if the maximum number of cell styles was exceeded(poi-developers)
|
||||
47405 - Improved performance of RowRecordsAggregate.getStartRowNumberForBlock / getEndRowNumberForBlock(poi-developers)
|
||||
46250 - Workbook cloneSheet() - clone images
|
||||
48026 - duplicate footer and header
|
||||
46664 - Print Area does not save in HSSF worksheets
|
||||
49761 - Double.NaN can be written but not read with POI
|
||||
47309 - Number of Cell Comments in a sheet limited to 65536 with HSSF
|
||||
46776 - POI does not work when run the method "cloneSheet()"
|
||||
47250 - Fixed FontRecord to expect unicode flags even when name length is zero(POI-DEVELOPERS)
|
||||
47198 - Fixed formula evaluator comparison of -0.0 and 0.0(POI-DEVELOPERS)
|
||||
46287 - Control of header and footer extraction in ExcelExtractor / XSSFExcelExtractor(POI-DEVELOPERS)
|
||||
47154 - Handle the cell format @ as the same as General(POI-DEVELOPERS)
|
||||
40520 - Fixed HSSFFont.applyFont() to properly apply font to overlapping regions(POI-DEVELOPERS)
|
||||
45720 - cloneSheet breaks autofilters
|
||||
46643 - Formula parser should encode explicit range operator with tMemFunc
|
||||
51481 - Office 2007 warning if using autofilter
|
||||
50681 - autoSizeColumn sets column width beyond 255 character limit for XSSF sheets and HSSF Sheets
|
||||
50912 - Applying an HSSFCellStyle on an HSSFCell has no effect
|
||||
51143 - NameCommentRecord correction for writing non ASCII strings(poi-developers)
|
||||
|
||||
New Features
|
||||
a. Add NameCommentRecord, HeaderFooterRecord
|
||||
b. AutoFilter Phrase II - it's able to create autofilter with any cell range
|
||||
c. Add the method to determine if the cell is merged or not
|
||||
d. Support compilation with MonoDeveloper
|
||||
e. Change all interface name starting with 'I'
|
||||
|
||||
=========================================================================
|
||||
|
||||
1.2.3 (Nov. 2010)
|
||||
NPOI Bug fixes
|
||||
5010 - Unable to read xls file with pivot table
|
||||
5139 - SheetExtRecord DataSize is 40
|
||||
6177 - LeftoverDataException: Intermitend Bug
|
||||
6341 - System.NullReferenceException on Workbook.Dispose (+Bugfix)
|
||||
Change NPOI.HSSF.Model.Sheet to NPOI.HSSF.Model.InternalSheet
|
||||
Change NPOI.HSSF.Model.Workbook to NPOI.HSSF.Model.InternalWorkbook
|
||||
6984 - Cannot manually edit/add dates in the xls created by NPOI
|
||||
|
||||
Sync POI bug fixes
|
||||
46776 - Added clone() method to MulBlankRecord to fix crash in Sheet.cloneSheet()(POI-DEVELOPERS)
|
||||
46547 - Allow addition of conditional formatting after data validation(POI-DEVELOPERS)
|
||||
45290 - Support odd files where the POIFS header block comes after the data blocks, and is on the data blocks list(POI-DEVELOPERS)
|
||||
46904 - Fix POIFS issue with duplicate block 0 references on very old BIFF5/BIFF7 files(POI-DEVELOPERS)
|
||||
45376
|
||||
47970 - added a method to set arabic mode in HSSFSheet(POI-DEVELOPERS)
|
||||
47048 - Fixed evaluation of defined names with the 'complex' flag set(POI-DEVELOPERS)
|
||||
44916 - Allow access to the HSSFPatriarch from HSSFSheet once created(POI-DEVELOPERS)
|
||||
45672 - improve handling by MissingRecordAwareHSSFListener of records that cover multiple cells (MulBlankRecord and MulRKRecord)(POI-DEVELOPERS)
|
||||
45698 - Fix LinkTable to tolerate multiple EXTERNSHEET records(POI-DEVELOPERS)
|
||||
45784 - More fixes to SeriesTextRecord(POI-DEVELOPERS)
|
||||
46065 - added implementation for VALUE function(POI-DEVELOPERS)
|
||||
45966 - added implementation for FIND function(POI-DEVELOPERS)
|
||||
45784 - More fixes to SeriesTextRecord(POI-DEVELOPERS)
|
||||
46065 - added implementation for VALUE function(POI-DEVELOPERS)
|
||||
45966 - added implementation for FIND function(POI-DEVELOPERS)
|
||||
47721 - Added implementation for INDIRECT()
|
||||
Added implementation for ISNA()(
|
||||
48332 - fixed ColumnInfoRecord to tolerate missing reserved field
|
||||
45778 - fixed ObjRecord to read ftLbsData properly(POI-DEVELOPERS)
|
||||
46206 - Fixed Sheet to tolerate missing DIMENSION records(POI-DEVELOPERS)
|
||||
47384 - Fixed ExternalNameRecord to handle unicode names(POI-DEVELOPERS)
|
||||
47479 - Fix BoolErrRecord to tolerate incorrect format written by OOO
|
||||
46199 - More tweaks to EmbeddedObjectRefSubRecord(POI-DEVELOPERS)
|
||||
47751 - Do not allow HSSF's cell text longer than 32,767 characters
|
||||
46213 - Fixed FormulaRecordAggregate to gracefully ignore extra StringRecords(POI-DEVELOPERS)
|
||||
46301 - added pivot table records: SXDI, SXVDEX, SXPI, SXIDSTM, SXVIEW, SXVD, SXVS, et al(POI-DEVELOPERS)
|
||||
48180 - be more forgiving of short chart records, which skip some unused fields(POI-DEVELOPERS)
|
||||
46280 - Fixed RowRecordsAggregate etc to properly skip PivotTable records(POI-DEVELOPERS)
|
||||
46174 - Fixed HSSFName to handle general formulas (not just area references)(POI-DEVELOPERS)
|
||||
47768 - Implementation of Excel "Npv" functions
|
||||
47771 - Added method setFunction(boolean) for defined names
|
||||
47770 - built-in positive formats don't need starting '
|
||||
47737 - adjust sheet indices of named ranges when deleting sheets
|
||||
47448 - Allow HSSFEventFactory to handle non-zero padding at the end of the workbook stream
|
||||
47143 - Fixed OOM in HSSFWorkbook#getAllPictures when reading .xls files containing metafiles
|
||||
47415 - Fixed PageSettingsBlock to allow multiple PLS records
|
||||
46269 - Improved error message when attempting to read BIFF2 file(POI-DEVELOPERS)
|
||||
46189 - added chart records: CHARTFRTINFO, STARTBLOCK, ENDBLOCK, STARTOBJECT, ENDOBJECT, and CATLAB(POI-DEVELOPERS)
|
||||
45290 - Support odd files where the POIFS header block comes after the data blocks, and is on the data blocks list(POI-DEVELOPERS)
|
||||
46137 - Handle odd files with a ContinueRecord after EOFRecord(POI-DEVELOPERS)
|
||||
|
||||
=========================================================================
|
||||
|
||||
NPOI 1.2.2 (2009-12-5)
|
||||
a. ability to identify more Chart record
|
||||
b. ColumnAutoSize bug is fixed (bug 3754 )
|
||||
c. DefaultRowHeight bug is fixed (bug 3880)
|
||||
e. Sheet Tab Formatting (bug 3772)
|
||||
f. ShrinkToFit property is exposed to user (bug 4103)
|
||||
g. Active selection area (bug 4527)
|
||||
h. HSSFSheet.RemoveRow will remove CellRecord as well as RowRecord (bug 3493)
|
||||
i. Auto filter feature (alpha)
|
||||
j. read xls template with macro (bug 3804)
|
||||
|
||||
=========================================================================
|
||||
|
||||
NPOI 1.2.1 (2009-6-1)
|
||||
a. Conditional Formating doesn't work as expected
|
||||
b. HSSFDataFormat.GetFormat return different index for the same format string
|
||||
c. Incorrect namespace spelling of NPOI.SS.Formula
|
||||
d. HSSFCell.ToString() method supports DataFormat now
|
||||
e. add strong name for all the assembiles
|
||||
f. HSSFColor.index static variable isn't accessible in VB.NET due to the HSSFColor Index property
|
||||
|
||||
=========================================================================
|
||||
|
||||
NPOI 1.2 (2009-5)
|
||||
implement features in POI 3.2 final
|
||||
BIN
lib/NPOI/dotnet2/ICSharpCode.SharpZipLib.dll
Normal file
BIN
lib/NPOI/dotnet2/ICSharpCode.SharpZipLib.dll
Normal file
Binary file not shown.
8109
lib/NPOI/dotnet2/NPOI.OOXML.XML
Normal file
8109
lib/NPOI/dotnet2/NPOI.OOXML.XML
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/NPOI/dotnet2/NPOI.OOXML.dll
Normal file
BIN
lib/NPOI/dotnet2/NPOI.OOXML.dll
Normal file
Binary file not shown.
2949
lib/NPOI/dotnet2/NPOI.OpenXml4Net.XML
Normal file
2949
lib/NPOI/dotnet2/NPOI.OpenXml4Net.XML
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/NPOI/dotnet2/NPOI.OpenXml4Net.dll
Normal file
BIN
lib/NPOI/dotnet2/NPOI.OpenXml4Net.dll
Normal file
Binary file not shown.
BIN
lib/NPOI/dotnet2/NPOI.OpenXmlFormats.dll
Normal file
BIN
lib/NPOI/dotnet2/NPOI.OpenXmlFormats.dll
Normal file
Binary file not shown.
41543
lib/NPOI/dotnet2/NPOI.XML
Normal file
41543
lib/NPOI/dotnet2/NPOI.XML
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/NPOI/dotnet2/NPOI.dll
Normal file
BIN
lib/NPOI/dotnet2/NPOI.dll
Normal file
Binary file not shown.
BIN
lib/NPOI/dotnet4/ICSharpCode.SharpZipLib.dll
Normal file
BIN
lib/NPOI/dotnet4/ICSharpCode.SharpZipLib.dll
Normal file
Binary file not shown.
8109
lib/NPOI/dotnet4/NPOI.OOXML.XML
Normal file
8109
lib/NPOI/dotnet4/NPOI.OOXML.XML
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/NPOI/dotnet4/NPOI.OOXML.dll
Normal file
BIN
lib/NPOI/dotnet4/NPOI.OOXML.dll
Normal file
Binary file not shown.
2949
lib/NPOI/dotnet4/NPOI.OpenXml4Net.XML
Normal file
2949
lib/NPOI/dotnet4/NPOI.OpenXml4Net.XML
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/NPOI/dotnet4/NPOI.OpenXml4Net.dll
Normal file
BIN
lib/NPOI/dotnet4/NPOI.OpenXml4Net.dll
Normal file
Binary file not shown.
BIN
lib/NPOI/dotnet4/NPOI.OpenXmlFormats.dll
Normal file
BIN
lib/NPOI/dotnet4/NPOI.OpenXmlFormats.dll
Normal file
Binary file not shown.
41543
lib/NPOI/dotnet4/NPOI.XML
Normal file
41543
lib/NPOI/dotnet4/NPOI.XML
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/NPOI/dotnet4/NPOI.dll
Normal file
BIN
lib/NPOI/dotnet4/NPOI.dll
Normal file
Binary file not shown.
BIN
lib/NPOI/logo/120_120.jpg
Normal file
BIN
lib/NPOI/logo/120_120.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.0 KiB |
BIN
lib/NPOI/logo/240_240.png
Normal file
BIN
lib/NPOI/logo/240_240.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
BIN
lib/NPOI/logo/32_32.jpg
Normal file
BIN
lib/NPOI/logo/32_32.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.8 KiB |
BIN
lib/NPOI/logo/60_60.jpg
Normal file
BIN
lib/NPOI/logo/60_60.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
BIN
lib/NVelocity/NVelocity.dll
Normal file
BIN
lib/NVelocity/NVelocity.dll
Normal file
Binary file not shown.
BIN
lib/Newtonsoft.Json.dll
Normal file
BIN
lib/Newtonsoft.Json.dll
Normal file
Binary file not shown.
9683
lib/Newtonsoft.Json.xml
Normal file
9683
lib/Newtonsoft.Json.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/Quartz/ClientProfile/Common.Logging.Core.dll
Normal file
BIN
lib/Quartz/ClientProfile/Common.Logging.Core.dll
Normal file
Binary file not shown.
BIN
lib/Quartz/ClientProfile/Common.Logging.dll
Normal file
BIN
lib/Quartz/ClientProfile/Common.Logging.dll
Normal file
Binary file not shown.
BIN
lib/Quartz/ClientProfile/Quartz.dll
Normal file
BIN
lib/Quartz/ClientProfile/Quartz.dll
Normal file
Binary file not shown.
BIN
lib/Quartz/ClientProfile/Quartz.pdb
Normal file
BIN
lib/Quartz/ClientProfile/Quartz.pdb
Normal file
Binary file not shown.
19973
lib/Quartz/ClientProfile/Quartz.xml
Normal file
19973
lib/Quartz/ClientProfile/Quartz.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/Quartz/Common.Logging.Core.dll
Normal file
BIN
lib/Quartz/Common.Logging.Core.dll
Normal file
Binary file not shown.
BIN
lib/Quartz/Common.Logging.dll
Normal file
BIN
lib/Quartz/Common.Logging.dll
Normal file
Binary file not shown.
BIN
lib/Quartz/Quartz.dll
Normal file
BIN
lib/Quartz/Quartz.dll
Normal file
Binary file not shown.
BIN
lib/Quartz/Quartz.pdb
Normal file
BIN
lib/Quartz/Quartz.pdb
Normal file
Binary file not shown.
19973
lib/Quartz/Quartz.xml
Normal file
19973
lib/Quartz/Quartz.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/ReclyMemory/Microsoft.IO.RecyclableMemoryStream.dll
Normal file
BIN
lib/ReclyMemory/Microsoft.IO.RecyclableMemoryStream.dll
Normal file
Binary file not shown.
BIN
lib/Redis/CSRedisCore.dll
Normal file
BIN
lib/Redis/CSRedisCore.dll
Normal file
Binary file not shown.
BIN
lib/Redis/CSRedisCore.pdb
Normal file
BIN
lib/Redis/CSRedisCore.pdb
Normal file
Binary file not shown.
11016
lib/Redis/CSRedisCore.xml
Normal file
11016
lib/Redis/CSRedisCore.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/Redis/Newtonsoft.Json.dll
Normal file
BIN
lib/Redis/Newtonsoft.Json.dll
Normal file
Binary file not shown.
BIN
lib/Redis/ServiceStack.Common.dll
Normal file
BIN
lib/Redis/ServiceStack.Common.dll
Normal file
Binary file not shown.
BIN
lib/Redis/ServiceStack.Interfaces.dll
Normal file
BIN
lib/Redis/ServiceStack.Interfaces.dll
Normal file
Binary file not shown.
BIN
lib/Redis/ServiceStack.Redis.dll
Normal file
BIN
lib/Redis/ServiceStack.Redis.dll
Normal file
Binary file not shown.
BIN
lib/Redis/ServiceStack.Text.dll
Normal file
BIN
lib/Redis/ServiceStack.Text.dll
Normal file
Binary file not shown.
BIN
lib/Redis/System.ValueTuple.dll
Normal file
BIN
lib/Redis/System.ValueTuple.dll
Normal file
Binary file not shown.
1299
lib/Redis/System.ValueTuple.xml
Normal file
1299
lib/Redis/System.ValueTuple.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/RestSharp/RestSharp.dll
Normal file
BIN
lib/RestSharp/RestSharp.dll
Normal file
Binary file not shown.
BIN
lib/RestSharp/RestSharp.pdb
Normal file
BIN
lib/RestSharp/RestSharp.pdb
Normal file
Binary file not shown.
2897
lib/RestSharp/RestSharp.xml
Normal file
2897
lib/RestSharp/RestSharp.xml
Normal file
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user