28 references to ObjectTranslator
MSBuildTaskHost (28)
BinaryTranslator.cs (18)
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> 378public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<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) 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)
48private static ObjectTranslator<T> AdaptFactory<T>(NodePacketValueFactory<T> valueFactory) where T : ITranslatable