43 references to ObjectTranslator
Microsoft.Build (2)
TranslatorHelpers.cs (2)
17/// <see cref="ObjectTranslator{T}"/>. 48private static ObjectTranslator<T> AdaptFactory<T>(NodePacketValueFactory<T> valueFactory) where T : ITranslatable
Microsoft.Build.Framework (38)
BinaryTranslator.cs (25)
339/// Translates a list of T using an <see cref="ObjectTranslator{T}"/> 344public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator) 351public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T> 371/// Translates a collection of T into the specified type using an <see cref="ObjectTranslator{T}"/> and <see cref="NodePacketCollectionCreator{L}"/> 378public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T> 556/// Translates an array of objects using an <see cref="ObjectTranslator{T}"/> 561public void TranslateArray<T>(ref T[] array, ObjectTranslator<T> objectTranslator) 662ObjectTranslator<K> keyTranslator, 663ObjectTranslator<V> valueTranslator, 691public void TranslateDictionary<T>(ref Dictionary<string, T> dictionary, IEqualityComparer<string> comparer, ObjectTranslator<T> objectTranslator) 719public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator) 749public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<D> dictionaryCreator) 1123/// Translates a list of T using an <see cref="ObjectTranslator{T}"/> 1128public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator) 1146/// Translates a list of T using an <see cref="ObjectTranslator{T}"/> 1153public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T> 1171/// Translates a collection of T into the specified type using an <see cref="ObjectTranslator{T}"/> and <see cref="NodePacketCollectionCreator{L}"/> 1178public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T> 1343/// Translates an array of objects using an <see cref="ObjectTranslator{T}"/> 1348public void TranslateArray<T>(ref T[] array, ObjectTranslator<T> objectTranslator) 1462ObjectTranslator<K> keyTranslator, 1463ObjectTranslator<V> valueTranslator, 1490public void TranslateDictionary<T>(ref Dictionary<string, T> dictionary, IEqualityComparer<string> comparer, ObjectTranslator<T> objectTranslator) 1517public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator) 1546public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<D> dictionaryCreator)
ITranslator.cs (13)
186/// Translates a list of T using an <see cref="ObjectTranslator{T}"/> 191void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator); 194/// Translates a list of T using an <see cref="ObjectTranslator{T}"/> anda collection factory 201void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T>; 204/// Translates a collection of T into the specified type using an <see cref="ObjectTranslator{T}"/> and <see cref="NodePacketCollectionCreator{L}"/> 211void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T>; 296/// Translates an array of objects using an <see cref="ObjectTranslator{T}"/>. 301void TranslateArray<T>(ref T[] array, ObjectTranslator<T> objectTranslator); 327void TranslateDictionary<K, V>(ref IDictionary<K, V> dictionary, ObjectTranslator<K> keyTranslator, ObjectTranslator<V> valueTranslator, NodePacketCollectionCreator<IDictionary<K, V>> dictionaryCreator); 336void TranslateDictionary<T>(ref Dictionary<string, T> dictionary, IEqualityComparer<string> comparer, ObjectTranslator<T> objectTranslator) 346void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator) 358void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<D> collectionCreator)
Microsoft.Build.Tasks.Core (2)
TranslatorHelpers.cs (2)
17/// <see cref="ObjectTranslator{T}"/>. 48private static ObjectTranslator<T> AdaptFactory<T>(NodePacketValueFactory<T> valueFactory) where T : ITranslatable
MSBuild (1)
TranslatorHelpers.cs (1)
48private static ObjectTranslator<T> AdaptFactory<T>(NodePacketValueFactory<T> valueFactory) where T : ITranslatable