Class OutputFileCollection
Inheritance
OutputFileCollection
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
|
Improve this Doc
View Source
Comparer
Declaration
public IEqualityComparer<string> Comparer { get; }
Property Value
|
Improve this Doc
View Source
Count
Declaration
public int Count { get; }
Property Value
|
Improve this Doc
View Source
Item[String]
Declaration
public OutputFileInfo this[string key] { get; set; }
Parameters
Type |
Name |
Description |
String |
key |
|
Property Value
|
Improve this Doc
View Source
Keys
Declaration
public ICollection<string> Keys { get; }
Property Value
|
Improve this Doc
View Source
Values
Declaration
public ICollection<OutputFileInfo> Values { get; }
Property Value
Methods
|
Improve this Doc
View Source
Add(String, OutputFileInfo)
Declaration
public void Add(string key, OutputFileInfo value)
Parameters
|
Improve this Doc
View Source
Clear()
Declaration
|
Improve this Doc
View Source
ContainsKey(String)
Declaration
public bool ContainsKey(string key)
Parameters
Type |
Name |
Description |
String |
key |
|
Returns
|
Improve this Doc
View Source
ContainsValue(OutputFileInfo)
Declaration
public bool ContainsValue(OutputFileInfo value)
Parameters
Returns
|
Improve this Doc
View Source
GetEnumerator()
Declaration
public IEnumerator<KeyValuePair<string, OutputFileInfo>> GetEnumerator()
Returns
|
Improve this Doc
View Source
Remove(String)
Declaration
public bool Remove(string key)
Parameters
Type |
Name |
Description |
String |
key |
|
Returns
|
Improve this Doc
View Source
TryGetValue(String, out OutputFileInfo)
Declaration
public bool TryGetValue(string key, out OutputFileInfo value)
Parameters
Returns
Implements
Extension Methods