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.1.26791.0-Beta2
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 (Inherited from ICollectionKeyValuePairString, IDataItem.)
Public propertyIsReadOnly (Inherited from ICollectionKeyValuePairString, IDataItem.)
Public propertyItem
Gets or sets the element with the specified key.
(Inherited from IDictionaryString, IDataItem.)
Public propertyKeys (Inherited from IDictionaryString, IDataItem.)
Public propertyValues (Inherited from IDictionaryString, IDataItem.)
Top
Methods
  NameDescription
Public methodAdd(T) (Inherited from ICollectionKeyValuePairString, IDataItem.)
Public methodAdd(TKey, 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 (Inherited from ICollectionKeyValuePairString, IDataItem.)
Public methodContains (Inherited from ICollectionKeyValuePairString, IDataItem.)
Public methodContainsKey (Inherited from IDictionaryString, IDataItem.)
Public methodCopyTo (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) (Inherited from IDictionaryString, IDataItem.)
Public methodRemove(T) (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