Class OutputFileCollection
Inheritance
OutputFileCollection
Namespace:Microsoft.DocAsCode.Plugins
Assembly:Microsoft.DocAsCode.Plugins.dll
Syntax
public class OutputFileCollection : ObservableDictionary<string, OutputFileInfo>, IDictionary<string, OutputFileInfo>, ICollection<KeyValuePair<string, OutputFileInfo>>, IEnumerable<KeyValuePair<string, OutputFileInfo>>, IEnumerable, INotifyCollectionChanged
Properties
Comparer
Declaration
public IEqualityComparer<string> Comparer { get; }
Property Value
Count
Declaration
public int Count { get; }
Property Value
Item[String]
Declaration
public OutputFileInfo this[string key] { get; set; }
Parameters
Type |
Name |
Description |
String |
key |
|
Property Value
Keys
Declaration
public ICollection<string> Keys { get; }
Property Value
Values
Declaration
public ICollection<OutputFileInfo> Values { get; }
Property Value
Methods
Add(String, OutputFileInfo)
Declaration
public void Add(string key, OutputFileInfo value)
Parameters
Clear()
Declaration
ContainsKey(String)
Declaration
public bool ContainsKey(string key)
Parameters
Type |
Name |
Description |
String |
key |
|
Returns
ContainsValue(OutputFileInfo)
Declaration
public bool ContainsValue(OutputFileInfo value)
Parameters
Returns
GetEnumerator()
Declaration
public IEnumerator<KeyValuePair<string, OutputFileInfo>> GetEnumerator()
Returns
Remove(String)
Declaration
public bool Remove(string key)
Parameters
Type |
Name |
Description |
String |
key |
|
Returns
TryGetValue(String, out OutputFileInfo)
Declaration
public bool TryGetValue(string key, out OutputFileInfo value)
Parameters
Returns
Extension Methods