28 references to ObjectTranslator
MSBuildTaskHost (28)
BinaryTranslator.cs (18)
336public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator)
343public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T>
370public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T>
569public void TranslateArray<T>(ref T[] array, ObjectTranslator<T> objectTranslator)
670ObjectTranslator<K> keyTranslator,
671ObjectTranslator<V> valueTranslator,
699public void TranslateDictionary<T>(ref Dictionary<string, T> dictionary, IEqualityComparer<string> comparer, ObjectTranslator<T> objectTranslator)
727public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator)
757public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<D> dictionaryCreator)
1056public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator)
1081public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T>
1106public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T>
1296public void TranslateArray<T>(ref T[] array, ObjectTranslator<T> objectTranslator)
1410ObjectTranslator<K> keyTranslator,
1411ObjectTranslator<V> valueTranslator,
1438public void TranslateDictionary<T>(ref Dictionary<string, T> dictionary, IEqualityComparer<string> comparer, ObjectTranslator<T> objectTranslator)
1465public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator)
1494public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<D> dictionaryCreator)
ITranslator.cs (9)
191void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator);
201void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T>;
211void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T>;
313void TranslateArray<T>(ref T[] array, ObjectTranslator<T> objectTranslator);
339void TranslateDictionary<K, V>(ref IDictionary<K, V> dictionary, ObjectTranslator<K> keyTranslator, ObjectTranslator<V> valueTranslator, NodePacketCollectionCreator<IDictionary<K, V>> dictionaryCreator);
348void TranslateDictionary<T>(ref Dictionary<string, T> dictionary, IEqualityComparer<string> comparer, ObjectTranslator<T> objectTranslator)
358void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator)
370void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<D> collectionCreator)