18 references to ObjectTranslator
MSBuildTaskHost (18)
BinaryTranslator.cs (12)
349public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator)
364public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T>
410public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T>
689ObjectTranslator<K> keyTranslator,
690ObjectTranslator<V> valueTranslator,
714ObjectTranslator<K> keyTranslator,
1169public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator)
1212public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T>
1255public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T>
1534ObjectTranslator<K> keyTranslator,
1535ObjectTranslator<V> valueTranslator,
1558ObjectTranslator<K> keyTranslator,
ITranslator.cs (6)
206void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator);
225void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T>;
246void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T>;
363void TranslateDictionary<K, V>(ref IDictionary<K, V> dictionary, ObjectTranslator<K> keyTranslator, ObjectTranslator<V> valueTranslator, NodePacketCollectionCreator<IDictionary<K, V>> dictionaryCreator);
365void TranslateDictionary<K, V>(ref IDictionary<K, V> dictionary, ObjectTranslator<K> keyTranslator, ObjectTranslatorWithValueFactory<V> valueTranslator, NodePacketValueFactory<V> valueFactory, NodePacketCollectionCreator<IDictionary<K, V>> dictionaryCreator);