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> 553public void TranslateArray<T>(ref T[] array, ObjectTranslator<T> objectTranslator) 654ObjectTranslator<K> keyTranslator, 655ObjectTranslator<V> valueTranslator, 683public void TranslateDictionary<T>(ref Dictionary<string, T> dictionary, IEqualityComparer<string> comparer, ObjectTranslator<T> objectTranslator) 711public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator) 741public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<D> dictionaryCreator) 1040public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator) 1065public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T> 1090public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T> 1260public void TranslateArray<T>(ref T[] array, ObjectTranslator<T> objectTranslator) 1374ObjectTranslator<K> keyTranslator, 1375ObjectTranslator<V> valueTranslator, 1402public void TranslateDictionary<T>(ref Dictionary<string, T> dictionary, IEqualityComparer<string> comparer, ObjectTranslator<T> objectTranslator) 1429public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator) 1458public 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>; 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)
TranslatorHelpers.cs (1)
48private static ObjectTranslator<T> AdaptFactory<T>(NodePacketValueFactory<T> valueFactory) where T : ITranslatable