31 references to ObjectTranslator
Microsoft.Build (1)
Microsoft.Build.Framework (29)
BinaryTranslator.cs (17)
375/// Translates a list of T using an <see cref="ObjectTranslator{T}"/>
380public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator)
395public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T>
434/// Translates a collection of T into the specified type using an <see cref="ObjectTranslator{T}"/> and <see cref="NodePacketCollectionCreator{L}"/>
441public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T>
720ObjectTranslator<K> keyTranslator,
721ObjectTranslator<V> valueTranslator,
745ObjectTranslator<K> keyTranslator,
1219/// Translates a list of T using an <see cref="ObjectTranslator{T}"/>
1224public void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator)
1260/// Translates a list of T using an <see cref="ObjectTranslator{T}"/>
1267public void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T>
1303/// Translates a collection of T into the specified type using an <see cref="ObjectTranslator{T}"/> and <see cref="NodePacketCollectionCreator{L}"/>
1310public void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T>
1589ObjectTranslator<K> keyTranslator,
1590ObjectTranslator<V> valueTranslator,
1613ObjectTranslator<K> keyTranslator,
ITranslator.cs (12)
201/// Translates a list of T using an <see cref="ObjectTranslator{T}"/>
206void Translate<T>(ref List<T> list, ObjectTranslator<T> objectTranslator);
209/// Translates a list of T using an <see cref="ObjectTranslator{T}"/>
218/// Translates a list of T using an <see cref="ObjectTranslator{T}"/> anda collection factory
225void Translate<T, L>(ref IList<T> list, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : IList<T>;
228/// Translates a list of T using an <see cref="ObjectTranslator{T}"/> and a collection factory
239/// Translates a collection of T into the specified type using an <see cref="ObjectTranslator{T}"/> and <see cref="NodePacketCollectionCreator{L}"/>
246void Translate<T, L>(ref ICollection<T> collection, ObjectTranslator<T> objectTranslator, NodePacketCollectionCreator<L> collectionFactory) where L : ICollection<T>;
331/// Translates an array of objects using an <see cref="ObjectTranslator{T}"/>.
369void TranslateDictionary<K, V>(ref IDictionary<K, V> dictionary, ObjectTranslator<K> keyTranslator, ObjectTranslator<V> valueTranslator, NodePacketCollectionCreator<IDictionary<K, V>> dictionaryCreator);
371void TranslateDictionary<K, V>(ref IDictionary<K, V> dictionary, ObjectTranslator<K> keyTranslator, ObjectTranslatorWithValueFactory<V> valueTranslator, NodePacketValueFactory<V> valueFactory, NodePacketCollectionCreator<IDictionary<K, V>> dictionaryCreator);
Microsoft.Build.Tasks.Core (1)