Click or drag to resize

ICustomData Interface

IT Hit User File System
Represents data associated with a file or folder, organised as a dictionary.

Namespace:  ITHit.FileSystem
Assembly:  ITHit.FileSystem (in ITHit.FileSystem.dll) Version: 8.2.27026.0
Syntax
public interface ICustomData : IDictionary<string, IDataItem>, 
	ICollection<KeyValuePair<string, IDataItem>>, IEnumerable<KeyValuePair<string, IDataItem>>, 
	IEnumerable

The ICustomData type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of elements contained in the ICollectionT.
(Inherited from ICollectionKeyValuePairString, IDataItem.)
Public propertyIsReadOnly
Gets a value indicating whether the ICollectionT is read-only.
(Inherited from ICollectionKeyValuePairString, IDataItem.)
Public propertyItem
Gets or sets the element with the specified key.
(Inherited from IDictionaryString, IDataItem.)
Public propertyKeys
Gets an ICollectionT containing the keys of the IDictionaryTKey, TValue.
(Inherited from IDictionaryString, IDataItem.)
Public propertyValues
Gets an ICollectionT containing the values in the IDictionaryTKey, TValue.
(Inherited from IDictionaryString, IDataItem.)
Top
Methods
  NameDescription
Public methodAdd(T)
Adds an item to the ICollectionT.
(Inherited from ICollectionKeyValuePairString, IDataItem.)
Public methodAdd(TKey, TValue)
Adds an element with the provided key and value to the IDictionaryTKey, TValue.
(Inherited from IDictionaryString, IDataItem.)
Public methodAddOrUpdate(String)
Adds an element with the provided key to the dictionary. If an element with the provided key exists - updates the element.
Public methodAddOrUpdate(String, Object)
Adds an element with the provided key and value to the dictionary. If an element with the provided key exists - updates the element.
Public methodAddOrUpdateAsync(String)
Adds an element with the provided key the dictionary. If an element with the provided key exists - updates the element.
Public methodAddOrUpdateAsync(String, Object)
Adds an element with the provided key and value to the dictionary. If an element with the provided key exists - updates the element.
Public methodClear
Removes all items from the ICollectionT.
(Inherited from ICollectionKeyValuePairString, IDataItem.)
Public methodContains
Determines whether the ICollectionT contains a specific value.
(Inherited from ICollectionKeyValuePairString, IDataItem.)
Public methodContainsKey
Determines whether the IDictionaryTKey, TValue contains an element with the specified key.
(Inherited from IDictionaryString, IDataItem.)
Public methodCopyTo
Copies the elements of the ICollectionT to an Array, starting at a particular Array index.
(Inherited from ICollectionKeyValuePairString, IDataItem.)
Public methodCreate
Creates a new IDataItem that can be added to the dictionary.
Public methodCreateAndAdd
Creates a new IDataItem and adds it to the dictionary.
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from IEnumerableKeyValuePairString, IDataItem.)
Public methodRemove(TKey)
Removes the element with the specified key from the IDictionaryTKey, TValue.
(Inherited from IDictionaryString, IDataItem.)
Public methodRemove(T)
Removes the first occurrence of a specific object from the ICollectionT.
(Inherited from ICollectionKeyValuePairString, IDataItem.)
Public methodTryGetValue
Gets the value associated with the specified key.
(Inherited from IDictionaryString, IDataItem.)
Top
Extension Methods
  NameDescription
Public Extension MethodGetContentETag
Get content eTag or null if content eTag was never set.
(Defined by CustomDataExtensions.)
Public Extension MethodGetMetadataETag
Get metadata eTag or null if metadata eTag was never set.
(Defined by CustomDataExtensions.)
Public Extension MethodTryGetContentETag
Tries to get content eTag.
(Defined by CustomDataExtensions.)
Public Extension MethodTryGetMetadataETag
Tries to get metadata eTag.
(Defined by CustomDataExtensions.)
Top
See Also