28 references to ObjectTranslator
MSBuildTaskHost (28)
BinaryTranslator.cs (18)
343public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator) 350public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T> 377public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T> 560public void TranslateArray<T>(ref T[] array, ObjectTranslator<T> objectTranslator) 661ObjectTranslator<K> keyTranslator, 662ObjectTranslator<V> valueTranslator, 690public void TranslateDictionary<T>(ref Dictionary<string, T> dictionary, IEqualityComparer<string> comparer, ObjectTranslator<T> objectTranslator) 718public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator) 748public void TranslateDictionary<D, T>(ref D dictionary, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<D> dictionaryCreator) 1128public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator) 1153public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T> 1178public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<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 (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)
51private static ObjectTranslator<T> AdaptFactory<T>(NodePacketValueFactory<T> valueFactory) where T : ITranslatable