<PackageReference Include="Relativity.Other" Version="10.3.226.8" />
API Differences between 10.3.226.8 and 10.1.273.3
77 Additions
7 Removals
Relativity
Relativity.Query
kCura.Data.RowDataGateway
kCura.Data.RowDataGateway.Async
kCura.Data.RowDataGateway.Logging
-
public class SqlExecutionLogger : IDisposable
- public void LogUnknownFailureEvent(Exception ex, string dbName, string dbServer, string statement, IEnumerable<IDbDataParameter> parameters, int timeout, bool invalidOperationOccurred)
- public void LogUnknownFailureEvent(Exception ex, string dbName, string dbServer, string statement, IEnumerable<IDataParameter> parameters, int timeout, bool invalidOperationOccurred)
kCura.Utility
-
public class CacheValueInitializationTimeoutException : CacheItemValueInitializationException
-
public class CachingOptions
- public bool CacheNullValues { get; set; }
- public bool DisposeRemovedEntries { get; set; }
- public TimeSpan ExpirationTimeSpan { get; }
- public ExpirationType ExpirationType { get; set; }
- public TimeSpan MaxValueFactoryExecutionTime { get; }
- public int MaxValueFactoryRetryAttempts { get; set; }
- public bool WaitForCompletionOnTimeout { get; set; }
- public CachingOptions(Func<TimeSpan> expirationTimeSpan, ExpirationType expirationType)
- public CachingOptions(TimeSpan expirationTimeSpan, ExpirationType expirationType)
- public CachingOptions(Func<TimeSpan> expirationTimeSpan, ExpirationType expirationType, Func<TimeSpan> maxValueFactoryExecutionTime)
- public CachingOptions(TimeSpan expirationTimeSpan, ExpirationType expirationType, TimeSpan maxValueFactoryExecutionTime)
- public CachingOptions(Func<TimeSpan> expirationTimeSpan, ExpirationType expirationType, Func<TimeSpan> maxValueFactoryExecutionTime, int maxValueFactoryRetryAttempts, bool waitForCompletionOnTimeout, bool cacheNullValues, bool disposeRemovedEntries)
- public CachingOptions Clone()
-
public class LazyDictionaryCache
- public LazyDictionaryCache()
- public static LazyDictionaryCache<TKey, TValue> Create<TKey, TValue>(CachingOptions options, Func<TKey, string> keyFormatter, Func<TKey, CancellationToken, TValue> valueFactory)
- public static LazyDictionaryCache<TKey, TValue> Create<TKey, TValue>(CachingOptions options, Func<TKey, CancellationToken, TValue> valueFactory) where TKey : IConvertible
- public static LazyDictionaryCache<TKey, TValue> Create<TKey, TValue>(CachingOptions options, Func<BaseContext, TValue> valueFactory) where TKey : BaseContext
-
public class LazyDictionaryCache<TKey, TValue> : IDictionary<TKey, TValue>, IDisposable
-
public class NullableTypesHelper
-
public class TrustedIPHelper
-
public class TypedLazyMemoryCache
- public TypedLazyMemoryCache()
- public static TypedLazyMemoryCache<TKey, TValue> Create<TKey, TValue>(CachingOptions options, Func<TKey, string> keyFormatter, Func<TKey, CancellationToken, TValue> valueFactory)
- public static TypedLazyMemoryCache<TKey, TValue> Create<TKey, TValue>(CachingOptions options, Func<TKey, CancellationToken, TValue> valueFactory) where TKey : IConvertible
- public static TypedLazyMemoryCache<TKey, TValue> Create<TKey, TValue>(CachingOptions options, Func<TKey, string> keyFormatter, Func<TKey, CancellationToken, TValue> valueFactory, Action<TKey, TValue, CacheEntryRemovedReason> onEntryRemoved)
- public static TypedLazyMemoryCache<TKey, TValue> Create<TKey, TValue>(CachingOptions options, Func<TKey, CancellationToken, TValue> valueFactory, Action<TKey, TValue, CacheEntryRemovedReason> onEntryRemoved) where TKey : IConvertible
- public static TypedLazyMemoryCache<TKey, TValue> Create<TKey, TValue>(CachingOptions options, Func<TKey, string> keyFormatter, Func<TKey, CancellationToken, TValue> valueFactory, Action<TKey, TValue, CacheEntryRemovedReason> onEntryRemoved, Action<TKey, TValue> onEntryAdded)
- public static TypedLazyMemoryCache<TKey, TValue> Create<TKey, TValue>(CachingOptions options, Func<TKey, CancellationToken, TValue> valueFactory, Action<TKey, TValue, CacheEntryRemovedReason> onEntryRemoved, Action<TKey, TValue> onEntryAdded) where TKey : IConvertible
- public static TypedLazyMemoryCache<TKey, TValue> Create<TKey, TValue>(CachingOptions options, Func<BaseContext, TValue> valueFactory) where TKey : BaseContext
-
public class TypedLazyMemoryCache<TKey, TValue>
- public TypedLazyMemoryCache(CachingOptions options, Func<TKey, string> keyFormatter, Func<TKey, CancellationToken, TValue> valueFactory, Action<TKey, TValue, CacheEntryRemovedReason> onEntryRemoved, Action<TKey, TValue> onEntryAdded)
- public TValue GetOrAdd(TKey key)
- public void Remove(TKey key)
- public void Set(TKey key, TValue value)
kCura.Utility.Extensions