38 references to ObjectTranslator
Microsoft.Build.Framework (38)
BinaryTranslator.cs (25)
344/// Translates a list of T using an <see cref="ObjectTranslator{T}"/> 349public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator) 356public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T> 376/// Translates a collection of T into the specified type using an <see cref="ObjectTranslator{T}"/> and <see cref="NodePacketCollectionCreator{L}"/> 383public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T> 561/// Translates an array of objects using an <see cref="ObjectTranslator{T}"/> 566public void TranslateArray<T>(ref T[] array, ObjectTranslator<T> objectTranslator) 667ObjectTranslator<K> keyTranslator, 668ObjectTranslator<V> valueTranslator, 696public void TranslateDictionary<T>(ref Dictionary<string, T> dictionary, IEqualityComparer<string> comparer, ObjectTranslator<T> objectTranslator) 724public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator) 754public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<D> dictionaryCreator) 1135/// Translates a list of T using an <see cref="ObjectTranslator{T}"/> 1140public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator) 1158/// Translates a list of T using an <see cref="ObjectTranslator{T}"/> 1165public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T> 1183/// Translates a collection of T into the specified type using an <see cref="ObjectTranslator{T}"/> and <see cref="NodePacketCollectionCreator{L}"/> 1190public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T> 1355/// Translates an array of objects using an <see cref="ObjectTranslator{T}"/> 1360public void TranslateArray<T>(ref T[] array, ObjectTranslator<T> objectTranslator) 1474ObjectTranslator<K> keyTranslator, 1475ObjectTranslator<V> valueTranslator, 1502public void TranslateDictionary<T>(ref Dictionary<string, T> dictionary, IEqualityComparer<string> comparer, ObjectTranslator<T> objectTranslator) 1529public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator) 1558public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<D> dictionaryCreator)
ITranslator.cs (13)
193/// Translates a list of T using an <see cref="ObjectTranslator{T}"/> 198void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator); 201/// Translates a list of T using an <see cref="ObjectTranslator{T}"/> anda collection factory 208void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T>; 211/// Translates a collection of T into the specified type using an <see cref="ObjectTranslator{T}"/> and <see cref="NodePacketCollectionCreator{L}"/> 218void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T>; 303/// Translates an array of objects using an <see cref="ObjectTranslator{T}"/>. 308void TranslateArray<T>(ref T[] array, ObjectTranslator<T> objectTranslator); 334void TranslateDictionary<K, V>(ref IDictionary<K, V> dictionary, ObjectTranslator<K> keyTranslator, ObjectTranslator<V> valueTranslator, NodePacketCollectionCreator<IDictionary<K, V>> dictionaryCreator); 343void TranslateDictionary<T>(ref Dictionary<string, T> dictionary, IEqualityComparer<string> comparer, ObjectTranslator<T> objectTranslator) 353void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator) 365void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<D> collectionCreator)