You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Microsoft.Practices.Unity.Configuration.XML 144 KiB

4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Practices.Unity.Configuration</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Practices.Unity.Configuration.AliasElement">
  8. <summary>
  9. A configuration element storing information about a single type alias.
  10. </summary>
  11. </member>
  12. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElement">
  13. <summary>
  14. Base class for configuration elements with a default implementation of
  15. public deserialization.
  16. </summary>
  17. </member>
  18. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElement.Deserialize(System.Xml.XmlReader)">
  19. <summary>
  20. Load this element from the given <see cref="T:System.Xml.XmlReader"/>.
  21. </summary>
  22. <param name="reader">Contains the XML to initialize from.</param>
  23. </member>
  24. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElement.SerializeContent(System.Xml.XmlWriter)">
  25. <summary>
  26. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  27. </summary>
  28. <remarks>The caller of this method has already written the start element tag before
  29. calling this method, so deriving classes only need to write the element content, not
  30. the start or end tags.</remarks>
  31. <param name="writer">Writer to send XML content to.</param>
  32. </member>
  33. <member name="M:Microsoft.Practices.Unity.Configuration.AliasElement.#ctor">
  34. <summary>
  35. Construct a new, uninitialized <see cref="T:Microsoft.Practices.Unity.Configuration.AliasElement"/>.
  36. </summary>
  37. </member>
  38. <member name="M:Microsoft.Practices.Unity.Configuration.AliasElement.#ctor(System.String,System.Type)">
  39. <summary>
  40. Construct a new <see cref="T:Microsoft.Practices.Unity.Configuration.AliasElement"/> that is initialized
  41. to alias <paramref name="alias"/> to the target <paramref name="targetType"/>.
  42. </summary>
  43. <param name="alias">Alias to use.</param>
  44. <param name="targetType">Type that is aliased.</param>
  45. </member>
  46. <member name="M:Microsoft.Practices.Unity.Configuration.AliasElement.SerializeContent(System.Xml.XmlWriter)">
  47. <summary>
  48. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  49. </summary>
  50. <remarks>The caller of this method has already written the start element tag before
  51. calling this method, so deriving classes only need to write the element content, not
  52. the start or end tags.</remarks>
  53. <param name="writer">Writer to send XML content to.</param>
  54. </member>
  55. <member name="P:Microsoft.Practices.Unity.Configuration.AliasElement.Alias">
  56. <summary>
  57. The alias used for this type.
  58. </summary>
  59. </member>
  60. <member name="P:Microsoft.Practices.Unity.Configuration.AliasElement.TypeName">
  61. <summary>
  62. The fully qualified name this alias refers to.
  63. </summary>
  64. </member>
  65. <member name="T:Microsoft.Practices.Unity.Configuration.AliasElementCollection">
  66. <summary>
  67. A collection of <see cref="T:Microsoft.Practices.Unity.Configuration.AliasElement"/>s.
  68. </summary>
  69. </member>
  70. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollection`1">
  71. <summary>
  72. Specialization of <see cref="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase`1"/>
  73. that provides a canned implementation of <see cref="M:System.Configuration.ConfigurationElementCollection.CreateNewElement"/>.
  74. </summary>
  75. <typeparam name="TElement">Type of configuration element in the collection.</typeparam>
  76. </member>
  77. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase`1">
  78. <summary>
  79. A base helper class for implementing configuration collections.
  80. </summary>
  81. <typeparam name="TElement">Type of configuration element contained in
  82. the collection.</typeparam>
  83. </member>
  84. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase`1.GetElement(System.Int32)">
  85. <summary>
  86. Plug point to get objects out of the collection.
  87. </summary>
  88. <param name="index">Index in the collection to retrieve the item from.</param>
  89. <returns>Item at that index or null if not present.</returns>
  90. </member>
  91. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase`1.GetElement(System.Object)">
  92. <summary>
  93. Plug point to get objects out of the collection.
  94. </summary>
  95. <param name="key">Key to look up the object by.</param>
  96. <returns>Item with that key or null if not present.</returns>
  97. </member>
  98. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase`1.Deserialize(System.Xml.XmlReader)">
  99. <summary>
  100. Load this element from the given <see cref="T:System.Xml.XmlReader"/>.
  101. </summary>
  102. <param name="reader">Contains the XML to initialize from.</param>
  103. </member>
  104. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase`1.GetEnumerator">
  105. <summary>
  106. Returns an enumerator that iterates through the collection.
  107. </summary>
  108. <returns>
  109. A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
  110. </returns>
  111. <filterpriority>1</filterpriority>
  112. </member>
  113. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase`1.Add(`0)">
  114. <summary>
  115. Add a new element to the collection.
  116. </summary>
  117. <param name="element">Element to add.</param>
  118. </member>
  119. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase`1.RemoveAt(System.Int32)">
  120. <summary>
  121. Remove an element from the collection at the given index.
  122. </summary>
  123. <param name="index">The index of the item to remove.</param>
  124. </member>
  125. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase`1.Clear">
  126. <summary>
  127. Remove all the items in the collection.
  128. </summary>
  129. </member>
  130. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase`1.SerializeElementContents(System.Xml.XmlWriter,System.String)">
  131. <summary>
  132. Write out the contents of this collection to the given
  133. <paramref name="writer"/> without a containing element
  134. corresponding directly to this container element. Each
  135. child element will have a tag name given by
  136. <paramref name="elementName"/>.
  137. </summary>
  138. <param name="writer"><see cref="T:System.Xml.XmlWriter"/> to output XML to.</param>
  139. <param name="elementName">Name of tag to generate.</param>
  140. </member>
  141. <member name="P:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase`1.Item(System.Int32)">
  142. <summary>
  143. Indexer to retrieve items in the collection by index.
  144. </summary>
  145. <param name="index">Index of the item to get or set.</param>
  146. <returns>The item at the given index.</returns>
  147. </member>
  148. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollection`1.CreateNewElement">
  149. <summary>
  150. When overridden in a derived class, creates a new <see cref="T:System.Configuration.ConfigurationElement"/>.
  151. </summary>
  152. <returns>
  153. A new <see cref="T:System.Configuration.ConfigurationElement"/>.
  154. </returns>
  155. </member>
  156. <member name="M:Microsoft.Practices.Unity.Configuration.AliasElementCollection.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
  157. <summary>
  158. Causes the configuration system to throw an exception.
  159. </summary>
  160. <returns>
  161. true if the unrecognized element was deserialized successfully; otherwise, false. The default is false.
  162. </returns>
  163. <param name="elementName">The name of the unrecognized element.</param>
  164. <param name="reader">An input stream that reads XML from the configuration file.</param>
  165. <exception cref="T:System.Configuration.ConfigurationErrorsException">The element specified in <paramref name="elementName"/> is the &lt;clear&gt; element.</exception>
  166. <exception cref="T:System.ArgumentException"><paramref name="elementName"/> starts with the reserved prefix "config" or "lock".</exception>
  167. </member>
  168. <member name="M:Microsoft.Practices.Unity.Configuration.AliasElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  169. <summary>
  170. Gets the element key for a specified configuration element when overridden in a derived class.
  171. </summary>
  172. <returns>
  173. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  174. </returns>
  175. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for. </param>
  176. </member>
  177. <member name="P:Microsoft.Practices.Unity.Configuration.AliasElementCollection.Item(System.String)">
  178. <summary>
  179. Indexer that allows you to get or set an alias by the alias name.
  180. </summary>
  181. <param name="alias">Alias of element to get or set.</param>
  182. <returns>The type name at that alias.</returns>
  183. </member>
  184. <member name="T:Microsoft.Practices.Unity.Configuration.ArrayElement">
  185. <summary>
  186. A configuration element used to configure injection of
  187. a specific set of values into an array.
  188. </summary>
  189. </member>
  190. <member name="T:Microsoft.Practices.Unity.Configuration.ParameterValueElement">
  191. <summary>
  192. Base class for configuration elements that describe a value that will
  193. be injected.
  194. </summary>
  195. </member>
  196. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterValueElement.#ctor">
  197. <summary>
  198. Initialize a new instance of <see cref="T:Microsoft.Practices.Unity.Configuration.ParameterValueElement"/>.
  199. </summary>
  200. </member>
  201. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterValueElement.GetInjectionParameterValue(Microsoft.Practices.Unity.IUnityContainer,System.Type)">
  202. <summary>
  203. Generate an <see cref="T:Microsoft.Practices.Unity.InjectionParameterValue"/> object
  204. that will be used to configure the container for a type registration.
  205. </summary>
  206. <param name="container">Container that is being configured. Supplied in order
  207. to let custom implementations retrieve services; do not configure the container
  208. directly in this method.</param>
  209. <param name="parameterType">Type of the </param>
  210. <returns></returns>
  211. </member>
  212. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterValueElement.GuardPropertyValueIsPresent(System.Collections.Generic.IDictionary{System.String,System.String},System.String)">
  213. <summary>
  214. Validate that an expected attribute is present in the given
  215. dictionary and that it has a non-empty value.
  216. </summary>
  217. <param name="propertyValues">Dictionary of name/value pairs to check.</param>
  218. <param name="requiredProperty">attribute name to check.</param>
  219. </member>
  220. <member name="P:Microsoft.Practices.Unity.Configuration.ParameterValueElement.Key">
  221. <summary>
  222. Return a unique string that can be used to identify this object. Used
  223. by the configuration collection support.
  224. </summary>
  225. </member>
  226. <member name="M:Microsoft.Practices.Unity.Configuration.ArrayElement.SerializeContent(System.Xml.XmlWriter)">
  227. <summary>
  228. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  229. </summary>
  230. <remarks>The caller of this method has already written the start element tag before
  231. calling this method, so deriving classes only need to write the element content, not
  232. the start or end tags.</remarks>
  233. <param name="writer">Writer to send XML content to.</param>
  234. </member>
  235. <member name="M:Microsoft.Practices.Unity.Configuration.ArrayElement.GetInjectionParameterValue(Microsoft.Practices.Unity.IUnityContainer,System.Type)">
  236. <summary>
  237. Generate an <see cref="T:Microsoft.Practices.Unity.InjectionParameterValue"/> object
  238. that will be used to configure the container for a type registration.
  239. </summary>
  240. <param name="container">Container that is being configured. Supplied in order
  241. to let custom implementations retrieve services; do not configure the container
  242. directly in this method.</param>
  243. <param name="parameterType">Type of the </param>
  244. <returns></returns>
  245. </member>
  246. <member name="P:Microsoft.Practices.Unity.Configuration.ArrayElement.TypeName">
  247. <summary>
  248. Type of array to inject. This is actually the type of the array elements,
  249. not the array type. Optional, if not specified we take the type from
  250. our containing element.
  251. </summary>
  252. </member>
  253. <member name="P:Microsoft.Practices.Unity.Configuration.ArrayElement.Values">
  254. <summary>
  255. Values used to calculate the contents of the array.
  256. </summary>
  257. </member>
  258. <member name="T:Microsoft.Practices.Unity.Configuration.AssemblyElement">
  259. <summary>
  260. A configuration element representing the namespace
  261. tags in the config file.
  262. </summary>
  263. </member>
  264. <member name="T:Microsoft.Practices.Unity.Configuration.NamedElement">
  265. <summary>
  266. An element with a single "name" property, used for
  267. the namespaces and assemblies.
  268. </summary>
  269. </member>
  270. <member name="M:Microsoft.Practices.Unity.Configuration.NamedElement.SerializeContent(System.Xml.XmlWriter)">
  271. <summary>
  272. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  273. </summary>
  274. <remarks>The caller of this method has already written the start element tag before
  275. calling this method, so deriving classes only need to write the element content, not
  276. the start or end tags.</remarks>
  277. <param name="writer">Writer to send XML content to.</param>
  278. </member>
  279. <member name="P:Microsoft.Practices.Unity.Configuration.NamedElement.Name">
  280. <summary>
  281. Name attribute for this element.
  282. </summary>
  283. </member>
  284. <member name="T:Microsoft.Practices.Unity.Configuration.AssemblyElementCollection">
  285. <summary>
  286. A collection of <see cref="T:Microsoft.Practices.Unity.Configuration.AssemblyElement"/>s in configuration.
  287. </summary>
  288. </member>
  289. <member name="M:Microsoft.Practices.Unity.Configuration.AssemblyElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  290. <summary>
  291. Gets the element key for a specified configuration element when overridden in a derived class.
  292. </summary>
  293. <returns>
  294. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  295. </returns>
  296. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for. </param>
  297. </member>
  298. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ConfigurationElementExtensions">
  299. <summary>
  300. Helpful extension methods when implementing configuration sections
  301. that deserialize "unwrapped" elements - elements that should be
  302. deserialized into a container but can be present outside
  303. that container in the actual config file.
  304. </summary>
  305. </member>
  306. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ConfigurationElementExtensions.ReadUnwrappedElement``1(System.Configuration.ConfigurationElement,System.Xml.XmlReader,Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase{``0})">
  307. <summary>
  308. Deserialize an element of the given type, store it in
  309. the collection object, and
  310. </summary>
  311. <typeparam name="TElementType">Type of element to create and deserialize.</typeparam>
  312. <param name="baseElement">Parent element containing element to deserialize.</param>
  313. <param name="reader">Xml reader containing state to deserialize from.</param>
  314. <param name="elementCollection">Collection to store the created element into.</param>
  315. <returns>The created element.</returns>
  316. </member>
  317. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ConfigurationElementExtensions.ReadElementByType``1(System.Configuration.ConfigurationElement,System.Xml.XmlReader,System.Type,Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DeserializableConfigurationElementCollectionBase{``0})">
  318. <summary>
  319. Deserialize an element, basing the element type on the one
  320. supplied at runtime, and then store the element into the
  321. given <paramref name="elementCollection"/>.
  322. </summary>
  323. <remarks>This method is useful when reading elements into a polymorphic collection.</remarks>
  324. <typeparam name="TElementType">Base type of element to store.</typeparam>
  325. <param name="baseElement">Element that contains the collection being stored into.</param>
  326. <param name="reader">Xml Reader containing state to deserialize from.</param>
  327. <param name="elementType">Runtime type of element to create.</param>
  328. <param name="elementCollection">Collection to store the created element into.</param>
  329. <returns>The created element.</returns>
  330. </member>
  331. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.InputStream">
  332. <summary>
  333. Class that tracks the current input state of the parser.
  334. </summary>
  335. </member>
  336. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseBuilder">
  337. <summary>
  338. A simple implementing of the rules for a Parsing Expression Grammar
  339. parsing algorithm. This supplies basic methods to do the primitives
  340. of the PEG, and combinators to create larger rules.
  341. </summary>
  342. </member>
  343. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseBuilder.Any(Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.InputStream)">
  344. <summary>
  345. The PEG "dot" operator that matches and consumes one character.
  346. </summary>
  347. <param name="input">Input to the parser.</param>
  348. <returns>The parse result.</returns>
  349. </member>
  350. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseBuilder.Match(System.Char)">
  351. <summary>
  352. Parse function generator that returns a method to match a single,
  353. specific character.
  354. </summary>
  355. <param name="charToMatch">Character to match.</param>
  356. <returns>The generated parsing function.</returns>
  357. </member>
  358. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseBuilder.Match(System.Func{System.Char,System.Boolean})">
  359. <summary>
  360. Parse function generator that checks if the current character matches
  361. the predicate supplied.
  362. </summary>
  363. <param name="predicate">Predicate used to determine if the character is in
  364. the given range.</param>
  365. <returns>The generated parsing function.</returns>
  366. </member>
  367. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseBuilder.ZeroOrMore(System.Func{Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.InputStream,Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult})">
  368. <summary>
  369. The "*" operator - match zero or more of the inner parse expressions.
  370. </summary>
  371. <param name="inner">Parse method to repeat matching.</param>
  372. <returns>The generated parsing function.</returns>
  373. </member>
  374. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseBuilder.Sequence(System.Func{Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.InputStream,Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult}[])">
  375. <summary>
  376. Parsing combinator that matches all of the given expressions in
  377. order, or matches none of them.
  378. </summary>
  379. <param name="expressions">Expressions that form the sequence to match.</param>
  380. <returns>The combined sequence.</returns>
  381. </member>
  382. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseBuilder.FirstOf(System.Func{Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.InputStream,Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult}[])">
  383. <summary>
  384. Parsing combinator that implements the PEG prioritized choice operator. Basically,
  385. try each of the expressions in order, and match if any of them match, stopping on the
  386. first match.
  387. </summary>
  388. <param name="expressions">Expressions that form the set of alternatives.</param>
  389. <returns>The combined parsing method.</returns>
  390. </member>
  391. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseBuilder.Not(System.Func{Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.InputStream,Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult})">
  392. <summary>
  393. Parsing combinator implementing the "not" predicate. This wraps
  394. the given <paramref name="expression"/> parsing method with a check
  395. to see if it matched. If it matched, then the Not fails, and vice
  396. versa. The result consumes no input.
  397. </summary>
  398. <param name="expression">The parse method to wrap.</param>
  399. <returns>The generated parsing function.</returns>
  400. </member>
  401. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseBuilder.EOF(Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.InputStream)">
  402. <summary>
  403. Parsing expression that matches End of input.
  404. </summary>
  405. <param name="input">Parser input.</param>
  406. <returns>Parse result</returns>
  407. </member>
  408. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseBuilder.WithAction(System.Func{Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.InputStream,Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult},System.Action{Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult})">
  409. <summary>
  410. Combinator that executes an action if the given expression matched.
  411. </summary>
  412. <param name="expression">Parsing expression to match.</param>
  413. <param name="onMatched">Action to execute if <paramref name="expression"/>
  414. matched. Input is the matched text from <paramref name="expression"/>.</param>
  415. <returns>The result of <paramref name="expression"/>.</returns>
  416. </member>
  417. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseBuilder.WithAction(System.Func{Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.InputStream,Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult},System.Func{Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult,Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult})">
  418. <summary>
  419. Combinator that executes an action if the given expression matched.
  420. </summary>
  421. <param name="expression">parsing expression to match.</param>
  422. <param name="onMatched">Method to execute if a match happens. This method returns
  423. the <see cref="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult"/> that will be returned from the combined expression.</param>
  424. <returns>The result of <paramref name="onMatched"/> if expression matched, else
  425. whatever <paramref name="expression"/> returned.</returns>
  426. </member>
  427. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult">
  428. <summary>
  429. Object containing the result of attempting to match a PEG rule.
  430. This object is the return type for all parsing methods.
  431. </summary>
  432. </member>
  433. <member name="P:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult.Matched">
  434. <summary>
  435. Did the rule match?
  436. </summary>
  437. </member>
  438. <member name="P:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult.MatchedString">
  439. <summary>
  440. The characters that were matched (if any)
  441. </summary>
  442. </member>
  443. <member name="P:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult.ResultData">
  444. <summary>
  445. Any extra information provided by the parsing expression
  446. (only set if the parse matched). The nature
  447. of the data varies depending on the parsing expression.
  448. </summary>
  449. </member>
  450. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult">
  451. <summary>
  452. Helper methods to make it easier to pull the data
  453. out of the result of a sequence expression.
  454. </summary>
  455. </member>
  456. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.System#Collections#IEnumerable#GetEnumerator">
  457. <summary>
  458. Returns an enumerator that iterates through a collection.
  459. </summary>
  460. <returns>
  461. An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
  462. </returns>
  463. <filterpriority>2</filterpriority>
  464. </member>
  465. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.GetEnumerator">
  466. <summary>
  467. Returns an enumerator that iterates through the collection.
  468. </summary>
  469. <returns>
  470. A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
  471. </returns>
  472. <filterpriority>1</filterpriority>
  473. </member>
  474. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.Add(Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult)">
  475. <summary>
  476. Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
  477. </summary>
  478. <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
  479. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
  480. </member>
  481. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.Clear">
  482. <summary>
  483. Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
  484. </summary>
  485. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
  486. </member>
  487. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.Contains(Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult)">
  488. <summary>
  489. Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
  490. </summary>
  491. <returns>
  492. true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
  493. </returns>
  494. <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
  495. </member>
  496. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.CopyTo(Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult[],System.Int32)">
  497. <summary>
  498. Copies the elements of the sequence to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
  499. </summary>
  500. <param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from this sequence. The <see cref="T:System.Array"/> must have zero-based indexing.</param>
  501. <param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param>
  502. <exception cref="T:System.ArgumentNullException"><paramref name="array"/> is null.</exception>
  503. <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex"/> is less than 0.</exception>
  504. <exception cref="T:System.ArgumentException"><paramref name="array"/> is multidimensional.
  505. -or-
  506. <paramref name="arrayIndex"/> is equal to or greater than the length of <paramref name="array"/>.
  507. -or-
  508. The number of elements in the source is greater than the available space from <paramref name="arrayIndex"/> to the end of the destination <paramref name="array"/>.
  509. </exception>
  510. </member>
  511. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.Remove(Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult)">
  512. <summary>
  513. Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
  514. </summary>
  515. <returns>
  516. true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
  517. </returns>
  518. <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
  519. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
  520. </member>
  521. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.IndexOf(Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult)">
  522. <summary>
  523. Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
  524. </summary>
  525. <returns>
  526. The index of <paramref name="item"/> if found in the list; otherwise, -1.
  527. </returns>
  528. <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
  529. </member>
  530. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.Insert(System.Int32,Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ParseResult)">
  531. <summary>
  532. Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
  533. </summary>
  534. <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
  535. <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
  536. <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
  537. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
  538. </member>
  539. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.RemoveAt(System.Int32)">
  540. <summary>
  541. Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
  542. </summary>
  543. <param name="index">The zero-based index of the item to remove.</param>
  544. <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
  545. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
  546. </member>
  547. <member name="P:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.Count">
  548. <summary>
  549. Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
  550. </summary>
  551. <returns>
  552. The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
  553. </returns>
  554. </member>
  555. <member name="P:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.IsReadOnly">
  556. <summary>
  557. Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
  558. </summary>
  559. <returns>
  560. true if the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only; otherwise, false.
  561. </returns>
  562. </member>
  563. <member name="P:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.SequenceResult.Item(System.Int32)">
  564. <summary>
  565. Gets or sets the element at the specified index.
  566. </summary>
  567. <returns>
  568. The element at the specified index.
  569. </returns>
  570. <param name="index">The zero-based index of the element to get or set.</param>
  571. <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
  572. <exception cref="T:System.NotSupportedException">The property is set and the <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
  573. </member>
  574. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeNameInfo">
  575. <summary>
  576. Class containing information about a type name.
  577. </summary>
  578. </member>
  579. <member name="P:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeNameInfo.Name">
  580. <summary>
  581. The base name of the class
  582. </summary>
  583. </member>
  584. <member name="P:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeNameInfo.Namespace">
  585. <summary>
  586. Namespace if any
  587. </summary>
  588. </member>
  589. <member name="P:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeNameInfo.AssemblyName">
  590. <summary>
  591. Assembly name, if any
  592. </summary>
  593. </member>
  594. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.XmlWriterExtensions">
  595. <summary>
  596. Helper methods on <see cref="T:System.Xml.XmlWriter"/>.
  597. </summary>
  598. </member>
  599. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.XmlWriterExtensions.WriteElement(System.Xml.XmlWriter,System.String,System.Action{System.Xml.XmlWriter})">
  600. <summary>
  601. A helper method to make it more foolproof to write elements. This takes care of writing the
  602. start and end element tags, and takes a nested closure with the code to write the content of
  603. the tag. That way the caller doesn't need to worry about the details of getting the start
  604. and end tags correct.
  605. </summary>
  606. <remarks>
  607. We don't support XML Namespaces here because .NET configuration doesn't use them so
  608. we don't need it for this current implementation.
  609. </remarks>
  610. <param name="writer">XmlWriter to write to.</param>
  611. <param name="elementName">Name of element.</param>
  612. <param name="writeContent">Nested lambda which, when executed, will create the content for the
  613. element.</param>
  614. <returns><paramref name="writer"/> (for method chaining if desired).</returns>
  615. </member>
  616. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.XmlWriterExtensions.WriteAttributeIfNotEmpty(System.Xml.XmlWriter,System.String,System.String)">
  617. <summary>
  618. A helper method to make it easier to output attributes. If the <paramref name="attributeValue"/> is
  619. null or an empty string, output nothing, else output the given XML attribute.
  620. </summary>
  621. <param name="writer">Writer to output to.</param>
  622. <param name="attributeName">Attribute name to write.</param>
  623. <param name="attributeValue">Value for the attribute.</param>
  624. <returns><paramref name="writer"/> (for method chaining if desired).</returns>
  625. </member>
  626. <member name="T:Microsoft.Practices.Unity.Configuration.ContainerConfiguringElement">
  627. <summary>
  628. A base class for those elements that can be used
  629. to configure a unity container.
  630. </summary>
  631. </member>
  632. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerConfiguringElement.#ctor">
  633. <summary>
  634. Create a new instance of <see cref="T:Microsoft.Practices.Unity.Configuration.ContainerConfiguringElement"/>.
  635. </summary>
  636. </member>
  637. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerConfiguringElement.ConfigureContainer(Microsoft.Practices.Unity.IUnityContainer)">
  638. <summary>
  639. Apply this element's configuration to the given <paramref name="container"/>.
  640. </summary>
  641. <param name="container">Container to configure.</param>
  642. </member>
  643. <member name="P:Microsoft.Practices.Unity.Configuration.ContainerConfiguringElement.Key">
  644. <summary>
  645. Return a unique key that can be used to manage this element in a collection.
  646. </summary>
  647. </member>
  648. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DictionaryExtensions">
  649. <summary>
  650. A couple of useful extension methods on IDictionary
  651. </summary>
  652. </member>
  653. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.DictionaryExtensions.GetOrNull``2(System.Collections.Generic.IDictionary{``0,``1},``0)">
  654. <summary>
  655. Get the value from a dictionary, or null if there is no value.
  656. </summary>
  657. <typeparam name="TKey">Key type of dictionary.</typeparam>
  658. <typeparam name="TValue">Value type of dictionary.</typeparam>
  659. <param name="dictionary">Dictionary to search.</param>
  660. <param name="key">Key to look up.</param>
  661. <returns>The value at the key or null if not in the dictionary.</returns>
  662. </member>
  663. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.UnknownElementHandlerMap`1">
  664. <summary>
  665. A helper class used to map element tag names to a handler method
  666. used to interpret that element.
  667. </summary>
  668. <typeparam name="TContainingElement"></typeparam>
  669. </member>
  670. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.UnknownElementHandlerMap`1.Add(System.String,System.Action{`0,System.Xml.XmlReader})">
  671. <summary>
  672. Add method to enable dictionary initializer syntax
  673. </summary>
  674. <param name="elementName"></param>
  675. <param name="processingAction"></param>
  676. </member>
  677. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.UnknownElementHandlerMap`1.ProcessElement(`0,System.String,System.Xml.XmlReader)">
  678. <summary>
  679. Process an unknown element according to the map entries.
  680. </summary>
  681. <param name="parentElement">Parent element that hit this unknown element.</param>
  682. <param name="elementName">Name of the unknown element.</param>
  683. <param name="reader">XmlReader positioned at start of element.</param>
  684. <returns>true if processed, false if not.</returns>
  685. </member>
  686. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.UnknownElementHandlerMap`1.System#Collections#IEnumerable#GetEnumerator">
  687. <summary>
  688. Returns an enumerator that iterates through a collection.
  689. </summary>
  690. <returns>
  691. An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
  692. </returns>
  693. <filterpriority>2</filterpriority>
  694. </member>
  695. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.UnknownElementHandlerMap`1.GetEnumerator">
  696. <summary>
  697. Returns an enumerator that iterates through the collection.
  698. </summary>
  699. <returns>
  700. A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
  701. </returns>
  702. <filterpriority>1</filterpriority>
  703. </member>
  704. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.UnknownElementHandlerMap">
  705. <summary>
  706. A helper class used to map element tag names to a handler method
  707. used to interpret that element.
  708. </summary>
  709. </member>
  710. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.UnknownElementHandlerMap.System#Collections#IEnumerable#GetEnumerator">
  711. <summary>
  712. Returns an enumerator that iterates through a collection.
  713. </summary>
  714. <returns>
  715. An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
  716. </returns>
  717. <filterpriority>2</filterpriority>
  718. </member>
  719. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.UnknownElementHandlerMap.GetEnumerator">
  720. <summary>
  721. Returns an enumerator that iterates through the collection.
  722. </summary>
  723. <returns>
  724. A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
  725. </returns>
  726. <filterpriority>1</filterpriority>
  727. </member>
  728. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ValueElementHelper">
  729. <summary>
  730. A helper class that assists in deserializing parameter and property
  731. elements. These elements both have a single "value" child element that
  732. specify the value to inject for the property or parameter.
  733. </summary>
  734. </member>
  735. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ValueElementHelper.#ctor(Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.IValueProvidingElement)">
  736. <summary>
  737. Create a new <see cref="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ValueElementHelper"/> that wraps reading
  738. values and storing them in the given <paramref name="parentElement"/>.
  739. </summary>
  740. <param name="parentElement">Element that contains the value elements.</param>
  741. </member>
  742. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ValueElementHelper.GetValue(Microsoft.Practices.Unity.Configuration.ParameterValueElement)">
  743. <summary>
  744. Gets a <see cref="T:Microsoft.Practices.Unity.Configuration.ParameterValueElement"/>, or if none is present,
  745. returns a default <see cref="T:Microsoft.Practices.Unity.Configuration.DependencyElement"/>.
  746. </summary>
  747. <param name="currentValue">The <see cref="T:Microsoft.Practices.Unity.Configuration.ParameterValueElement"/>.</param>
  748. <returns>The given <paramref name="currentValue"/>, unless
  749. <paramref name="currentValue"/> is null, in which case returns
  750. a <see cref="T:Microsoft.Practices.Unity.Configuration.DependencyElement"/>.</returns>
  751. </member>
  752. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ValueElementHelper.DeserializeUnrecognizedAttribute(System.String,System.String)">
  753. <summary>
  754. Helper method used during deserialization to handle
  755. attributes for the dependency and value tags.
  756. </summary>
  757. <param name="name">attribute name.</param>
  758. <param name="value">attribute value.</param>
  759. <returns>true</returns>
  760. </member>
  761. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ValueElementHelper.DeserializeUnknownElement(System.String,System.Xml.XmlReader)">
  762. <summary>
  763. Helper method used during deserialization to handle the default
  764. value element tags.
  765. </summary>
  766. <param name="elementName">The element name.</param>
  767. <param name="reader">XML data to read.</param>
  768. <returns>True if deserialization succeeded, false if it failed.</returns>
  769. </member>
  770. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ValueElementHelper.CompleteValueElement(System.Xml.XmlReader)">
  771. <summary>
  772. Call this method at the end of deserialization of your element to
  773. set your value element.
  774. </summary>
  775. </member>
  776. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.ValueElementHelper.SerializeParameterValueElement(System.Xml.XmlWriter,Microsoft.Practices.Unity.Configuration.ParameterValueElement,System.Boolean)">
  777. <summary>
  778. Serialize a <see cref="T:Microsoft.Practices.Unity.Configuration.ParameterValueElement"/> object out to XML.
  779. This method is aware of and implements the shorthand attributes
  780. for dependency and value elements.
  781. </summary>
  782. <param name="writer">Writer to output XML to.</param>
  783. <param name="element">The <see cref="T:Microsoft.Practices.Unity.Configuration.ParameterValueElement"/> to serialize.</param>
  784. <param name="elementsOnly">If true, always output an element. If false, then
  785. dependency and value elements will be serialized as attributes in the parent tag.</param>
  786. </member>
  787. <member name="T:Microsoft.Practices.Unity.Configuration.ConstructorElement">
  788. <summary>
  789. Configuration element representing a constructor configuration.
  790. </summary>
  791. </member>
  792. <member name="T:Microsoft.Practices.Unity.Configuration.InjectionMemberElement">
  793. <summary>
  794. Base class for configuration elements that generate <see cref="T:Microsoft.Practices.Unity.InjectionMember"/>
  795. object to configure a container.
  796. </summary>
  797. </member>
  798. <member name="M:Microsoft.Practices.Unity.Configuration.InjectionMemberElement.GetInjectionMembers(Microsoft.Practices.Unity.IUnityContainer,System.Type,System.Type,System.String)">
  799. <summary>
  800. Return the set of <see cref="T:Microsoft.Practices.Unity.InjectionMember"/>s that are needed
  801. to configure the container according to this configuration element.
  802. </summary>
  803. <param name="container">Container that is being configured.</param>
  804. <param name="fromType">Type that is being registered.</param>
  805. <param name="toType">Type that <paramref name="fromType"/> is being mapped to.</param>
  806. <param name="name">Name this registration is under.</param>
  807. <returns>One or more <see cref="T:Microsoft.Practices.Unity.InjectionMember"/> objects that should be
  808. applied to the container registration.</returns>
  809. </member>
  810. <member name="M:Microsoft.Practices.Unity.Configuration.InjectionMemberElement.GetMemberElementName(Microsoft.Practices.Unity.Configuration.InjectionMemberElement)">
  811. <summary>
  812. Get the standard tag name for an <see cref="T:Microsoft.Practices.Unity.Configuration.InjectionMemberElement"/>
  813. taking into account currently loaded section extensions.
  814. </summary>
  815. <param name="memberElement">Element to get the name for.</param>
  816. <returns>The element name.</returns>
  817. <exception cref="T:System.ArgumentException">If the member element is not currently registered
  818. with the section.</exception>
  819. </member>
  820. <member name="P:Microsoft.Practices.Unity.Configuration.InjectionMemberElement.Key">
  821. <summary>
  822. Each element must have a unique key, which is generated by the subclasses.
  823. </summary>
  824. </member>
  825. <member name="P:Microsoft.Practices.Unity.Configuration.InjectionMemberElement.ElementName">
  826. <summary>
  827. Element name to use to serialize this into XML.
  828. </summary>
  829. </member>
  830. <member name="M:Microsoft.Practices.Unity.Configuration.ConstructorElement.SerializeContent(System.Xml.XmlWriter)">
  831. <summary>
  832. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  833. </summary>
  834. <remarks>The caller of this method has already written the start element tag before
  835. calling this method, so deriving classes only need to write the element content, not
  836. the start or end tags.</remarks>
  837. <param name="writer">Writer to send XML content to.</param>
  838. </member>
  839. <member name="M:Microsoft.Practices.Unity.Configuration.ConstructorElement.GetInjectionMembers(Microsoft.Practices.Unity.IUnityContainer,System.Type,System.Type,System.String)">
  840. <summary>
  841. Return the set of <see cref="T:Microsoft.Practices.Unity.InjectionMember"/>s that are needed
  842. to configure the container according to this configuration element.
  843. </summary>
  844. <param name="container">Container that is being configured.</param>
  845. <param name="fromType">Type that is being registered.</param>
  846. <param name="toType">Type that <paramref name="fromType"/> is being mapped to.</param>
  847. <param name="name">Name this registration is under.</param>
  848. <returns>One or more <see cref="T:Microsoft.Practices.Unity.InjectionMember"/> objects that should be
  849. applied to the container registration.</returns>
  850. </member>
  851. <member name="P:Microsoft.Practices.Unity.Configuration.ConstructorElement.Parameters">
  852. <summary>
  853. The parameters of the constructor to call.
  854. </summary>
  855. </member>
  856. <member name="P:Microsoft.Practices.Unity.Configuration.ConstructorElement.Key">
  857. <summary>
  858. Each element must have a unique key, which is generated by the subclasses.
  859. </summary>
  860. </member>
  861. <member name="P:Microsoft.Practices.Unity.Configuration.ConstructorElement.ElementName">
  862. <summary>
  863. Element name to use to serialize this into XML.
  864. </summary>
  865. </member>
  866. <member name="T:Microsoft.Practices.Unity.Configuration.ContainerConfiguringElementCollection">
  867. <summary>
  868. A collection of <see cref="T:Microsoft.Practices.Unity.Configuration.ContainerConfiguringElement"/>s as
  869. loaded from configuration.
  870. </summary>
  871. </member>
  872. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerConfiguringElementCollection.CreateNewElement">
  873. <summary>
  874. When overridden in a derived class, creates a new <see cref="T:System.Configuration.ConfigurationElement"/>.
  875. </summary>
  876. <returns>
  877. A new <see cref="T:System.Configuration.ConfigurationElement"/>.
  878. </returns>
  879. </member>
  880. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerConfiguringElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  881. <summary>
  882. Gets the element key for a specified configuration element when overridden in a derived class.
  883. </summary>
  884. <returns>
  885. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  886. </returns>
  887. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for. </param>
  888. </member>
  889. <member name="T:Microsoft.Practices.Unity.Configuration.ContainerElement">
  890. <summary>
  891. A configuration element class defining the set of registrations to be
  892. put into a container.
  893. </summary>
  894. </member>
  895. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerElement.Configure(Microsoft.Practices.Unity.IUnityContainer)">
  896. <summary>
  897. Original configuration API kept for backwards compatibility.
  898. </summary>
  899. <param name="container">Container to configure</param>
  900. </member>
  901. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerElement.ConfigureContainer(Microsoft.Practices.Unity.IUnityContainer)">
  902. <summary>
  903. Apply the configuration information in this element to the
  904. given <paramref name="container"/>.
  905. </summary>
  906. <param name="container">Container to configure.</param>
  907. </member>
  908. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerElement.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
  909. <summary>
  910. Gets a value indicating whether an unknown element is encountered during deserialization.
  911. </summary>
  912. <returns>
  913. true when an unknown element is encountered while deserializing; otherwise, false.
  914. </returns>
  915. <param name="elementName">The name of the unknown subelement.</param>
  916. <param name="reader">The <see cref="T:System.Xml.XmlReader"/> being used for deserialization.</param>
  917. <exception cref="T:System.Configuration.ConfigurationErrorsException">The element identified by <paramref name="elementName"/> is locked.
  918. - or -
  919. One or more of the element's attributes is locked.
  920. - or -
  921. <paramref name="elementName"/> is unrecognized, or the element has an unrecognized attribute.
  922. - or -
  923. The element has a Boolean attribute with an invalid value.
  924. - or -
  925. An attempt was made to deserialize a property more than once.
  926. - or -
  927. An attempt was made to deserialize a property that is not a valid member of the element.
  928. - or -
  929. The element cannot contain a CDATA or text element.
  930. </exception>
  931. </member>
  932. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerElement.SerializeContent(System.Xml.XmlWriter)">
  933. <summary>
  934. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  935. </summary>
  936. <remarks>The caller of this method has already written the start element tag before
  937. calling this method, so deriving classes only need to write the element content, not
  938. the start or end tags.</remarks>
  939. <param name="writer">Writer to send XML content to.</param>
  940. </member>
  941. <member name="P:Microsoft.Practices.Unity.Configuration.ContainerElement.Name">
  942. <summary>
  943. Name for this container configuration as given in the config file.
  944. </summary>
  945. </member>
  946. <member name="P:Microsoft.Practices.Unity.Configuration.ContainerElement.Registrations">
  947. <summary>
  948. The type registrations in this container.
  949. </summary>
  950. </member>
  951. <member name="P:Microsoft.Practices.Unity.Configuration.ContainerElement.Instances">
  952. <summary>
  953. Any instances to register in the container.
  954. </summary>
  955. </member>
  956. <member name="P:Microsoft.Practices.Unity.Configuration.ContainerElement.Extensions">
  957. <summary>
  958. Any extensions to add to the container.
  959. </summary>
  960. </member>
  961. <member name="P:Microsoft.Practices.Unity.Configuration.ContainerElement.ConfiguringElements">
  962. <summary>
  963. Set of any extra configuration elements that were added by a
  964. section extension.
  965. </summary>
  966. <remarks>
  967. This is not marked as a configuration property because we don't want
  968. the actual property to show up as a nested element in the configuration.</remarks>
  969. </member>
  970. <member name="T:Microsoft.Practices.Unity.Configuration.ContainerExtensionElement">
  971. <summary>
  972. Configuration element representing an extension to add to a container.
  973. </summary>
  974. </member>
  975. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerExtensionElement.ConfigureContainer(Microsoft.Practices.Unity.IUnityContainer)">
  976. <summary>
  977. Add the extension specified in this element to the container.
  978. </summary>
  979. <param name="container">Container to configure.</param>
  980. </member>
  981. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerExtensionElement.SerializeContent(System.Xml.XmlWriter)">
  982. <summary>
  983. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  984. </summary>
  985. <remarks>The caller of this method has already written the start element tag before
  986. calling this method, so deriving classes only need to write the element content, not
  987. the start or end tags.</remarks>
  988. <param name="writer">Writer to send XML content to.</param>
  989. </member>
  990. <member name="P:Microsoft.Practices.Unity.Configuration.ContainerExtensionElement.TypeName">
  991. <summary>
  992. Type of the extension to add.
  993. </summary>
  994. </member>
  995. <member name="T:Microsoft.Practices.Unity.Configuration.ContainerExtensionElementCollection">
  996. <summary>
  997. A collection of <see cref="T:Microsoft.Practices.Unity.Configuration.ContainerExtensionElement"/>s.
  998. </summary>
  999. </member>
  1000. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerExtensionElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  1001. <summary>
  1002. Gets the element key for a specified configuration element when overridden in a derived class.
  1003. </summary>
  1004. <returns>
  1005. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  1006. </returns>
  1007. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for. </param>
  1008. </member>
  1009. <member name="T:Microsoft.Practices.Unity.Configuration.DependencyElement">
  1010. <summary>
  1011. A <see cref="T:Microsoft.Practices.Unity.Configuration.ParameterValueElement"/> derived class that describes
  1012. a parameter that should be resolved through the container.
  1013. </summary>
  1014. </member>
  1015. <member name="M:Microsoft.Practices.Unity.Configuration.DependencyElement.#ctor">
  1016. <summary>
  1017. Create a new instance of <see cref="T:Microsoft.Practices.Unity.Configuration.DependencyElement"/>.
  1018. </summary>
  1019. </member>
  1020. <member name="M:Microsoft.Practices.Unity.Configuration.DependencyElement.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})">
  1021. <summary>
  1022. Create a new instance of <see cref="T:Microsoft.Practices.Unity.Configuration.DependencyElement"/> with
  1023. properties initialized from the contents of
  1024. <paramref name="attributeValues"/>.
  1025. </summary>
  1026. <param name="attributeValues">Dictionary of name/value pairs to
  1027. initialize this object with.</param>
  1028. </member>
  1029. <member name="M:Microsoft.Practices.Unity.Configuration.DependencyElement.Microsoft#Practices#Unity#Configuration#IAttributeOnlyElement#SerializeContent(System.Xml.XmlWriter)">
  1030. <summary>
  1031. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  1032. </summary>
  1033. <remarks>The caller of this method has already written the start element tag before
  1034. calling this method, so deriving classes only need to write the element content, not
  1035. the start or end tags.</remarks>
  1036. <param name="writer">Writer to send XML content to.</param>
  1037. </member>
  1038. <member name="M:Microsoft.Practices.Unity.Configuration.DependencyElement.SerializeContent(System.Xml.XmlWriter)">
  1039. <summary>
  1040. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>. This
  1041. method always outputs an explicit &lt;dependency&gt; tag, instead of providing
  1042. attributes to the parent method.
  1043. </summary>
  1044. <param name="writer">Writer to send XML content to.</param>
  1045. </member>
  1046. <member name="M:Microsoft.Practices.Unity.Configuration.DependencyElement.GetInjectionParameterValue(Microsoft.Practices.Unity.IUnityContainer,System.Type)">
  1047. <summary>
  1048. Generate an <see cref="T:Microsoft.Practices.Unity.InjectionParameterValue"/> object
  1049. that will be used to configure the container for a type registration.
  1050. </summary>
  1051. <param name="container">Container that is being configured. Supplied in order
  1052. to let custom implementations retrieve services; do not configure the container
  1053. directly in this method.</param>
  1054. <param name="parameterType">Type of the </param>
  1055. <returns></returns>
  1056. </member>
  1057. <member name="P:Microsoft.Practices.Unity.Configuration.DependencyElement.Name">
  1058. <summary>
  1059. Name to use to when resolving. If empty, resolves the default.
  1060. </summary>
  1061. </member>
  1062. <member name="P:Microsoft.Practices.Unity.Configuration.DependencyElement.TypeName">
  1063. <summary>
  1064. Name of type this dependency should resolve to. This is optional;
  1065. without it the container will resolve the type of whatever
  1066. property or parameter this element is contained in.
  1067. </summary>
  1068. </member>
  1069. <member name="T:Microsoft.Practices.Unity.Configuration.ExtensionConfigurationElement">
  1070. <summary>
  1071. Base class used to derive new elements that can occur
  1072. directly within a container element.
  1073. </summary>
  1074. </member>
  1075. <member name="M:Microsoft.Practices.Unity.Configuration.ExtensionConfigurationElement.#ctor">
  1076. <summary>
  1077. Initialize a new instance of <see cref="T:Microsoft.Practices.Unity.Configuration.ExtensionConfigurationElement"/>.
  1078. </summary>
  1079. </member>
  1080. <member name="M:Microsoft.Practices.Unity.Configuration.ExtensionConfigurationElement.ConfigureContainer(Microsoft.Practices.Unity.IUnityContainer)">
  1081. <summary>
  1082. When overridden in a derived class, this method will make configuration
  1083. calls into the given <paramref name="container"/> according to its contents.
  1084. </summary>
  1085. <param name="container">The container to configure.</param>
  1086. </member>
  1087. <member name="P:Microsoft.Practices.Unity.Configuration.ExtensionConfigurationElement.Key">
  1088. <summary>
  1089. Unique key generated for use in the collection class.
  1090. </summary>
  1091. </member>
  1092. <member name="T:Microsoft.Practices.Unity.Configuration.ExtensionConfigurationElementCollection">
  1093. <summary>
  1094. A collection of <see cref="T:Microsoft.Practices.Unity.Configuration.ExtensionConfigurationElement"/>s.
  1095. </summary>
  1096. </member>
  1097. <member name="M:Microsoft.Practices.Unity.Configuration.ExtensionConfigurationElementCollection.CreateNewElement">
  1098. <summary>
  1099. When overridden in a derived class, creates a new <see cref="T:System.Configuration.ConfigurationElement"/>.
  1100. </summary>
  1101. <returns>
  1102. A new <see cref="T:System.Configuration.ConfigurationElement"/>.
  1103. </returns>
  1104. </member>
  1105. <member name="M:Microsoft.Practices.Unity.Configuration.ExtensionConfigurationElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  1106. <summary>
  1107. Gets the element key for a specified configuration element when overridden in a derived class.
  1108. </summary>
  1109. <returns>
  1110. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  1111. </returns>
  1112. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for. </param>
  1113. </member>
  1114. <member name="T:Microsoft.Practices.Unity.Configuration.ExtensionElementMap">
  1115. <summary>
  1116. This class manages the set of extension elements
  1117. added by section elements.
  1118. </summary>
  1119. </member>
  1120. <member name="M:Microsoft.Practices.Unity.Configuration.ExtensionElementMap.Clear">
  1121. <summary>
  1122. Clear the current set of extension elements.
  1123. </summary>
  1124. </member>
  1125. <member name="M:Microsoft.Practices.Unity.Configuration.ExtensionElementMap.AddContainerConfiguringElement(System.String,System.String,System.Type)">
  1126. <summary>
  1127. Register a new ContainerExtensionConfigurationElement with he section so it
  1128. can be read.
  1129. </summary>
  1130. <param name="prefix">prefix if any.</param>
  1131. <param name="tag">tag name.</param>
  1132. <param name="elementType">Type of element to register.</param>
  1133. </member>
  1134. <member name="M:Microsoft.Practices.Unity.Configuration.ExtensionElementMap.AddInjectionMemberElement(System.String,System.String,System.Type)">
  1135. <summary>
  1136. Register a new <see cref="T:Microsoft.Practices.Unity.Configuration.InjectionMemberElement"/> with the section
  1137. so it can be read.
  1138. </summary>
  1139. <param name="prefix">prefix if any.</param>
  1140. <param name="tag">Tag name.</param>
  1141. <param name="elementType">Type of element to register.</param>
  1142. </member>
  1143. <member name="M:Microsoft.Practices.Unity.Configuration.ExtensionElementMap.AddParameterValueElement(System.String,System.String,System.Type)">
  1144. <summary>
  1145. Register a new <see cref="T:Microsoft.Practices.Unity.Configuration.ParameterValueElement"/> with the section
  1146. so it can be read.
  1147. </summary>
  1148. <param name="prefix">prefix if any.</param>
  1149. <param name="tag">Tag name.</param>
  1150. <param name="elementType">Type of element to register.</param>
  1151. </member>
  1152. <member name="M:Microsoft.Practices.Unity.Configuration.ExtensionElementMap.GetContainerConfiguringElementType(System.String)">
  1153. <summary>
  1154. Retrieve the <see cref="T:Microsoft.Practices.Unity.Configuration.ContainerConfiguringElement"/> registered for the given
  1155. tag.
  1156. </summary>
  1157. <param name="tag">Tag to look up.</param>
  1158. <returns>Type of element, or null if not registered.</returns>
  1159. </member>
  1160. <member name="M:Microsoft.Practices.Unity.Configuration.ExtensionElementMap.GetInjectionMemberElementType(System.String)">
  1161. <summary>
  1162. Retrieve the ContainerExtensionConfigurationElement registered for the given
  1163. tag.
  1164. </summary>
  1165. <param name="tag">Tag to look up.</param>
  1166. <returns>Type of element, or null if not registered.</returns>
  1167. </member>
  1168. <member name="M:Microsoft.Practices.Unity.Configuration.ExtensionElementMap.GetParameterValueElementType(System.String)">
  1169. <summary>
  1170. Retrieve the ContainerExtensionConfigurationElement registered for the given
  1171. tag.
  1172. </summary>
  1173. <param name="tag">Tag to look up.</param>
  1174. <returns>Type of element, or null if not registered.</returns>
  1175. </member>
  1176. <member name="M:Microsoft.Practices.Unity.Configuration.ExtensionElementMap.GetTagForExtensionElement(System.Configuration.ConfigurationElement)">
  1177. <summary>
  1178. Retrieve the correct tag to use when serializing the given
  1179. <paramref name="element"/> to XML.
  1180. </summary>
  1181. <param name="element">Element to be serialized.</param>
  1182. <returns>The tag for that element type.</returns>
  1183. <exception cref="T:System.ArgumentException"> if the element is of a type that
  1184. is not registered with the section already.</exception>
  1185. </member>
  1186. <member name="T:Microsoft.Practices.Unity.Configuration.InjectionMemberElementCollection">
  1187. <summary>
  1188. A polymorphic collection of <see cref="T:Microsoft.Practices.Unity.Configuration.InjectionMemberElement"/>s.
  1189. </summary>
  1190. </member>
  1191. <member name="M:Microsoft.Practices.Unity.Configuration.InjectionMemberElementCollection.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
  1192. <summary>
  1193. Causes the configuration system to throw an exception.
  1194. </summary>
  1195. <returns>
  1196. true if the unrecognized element was deserialized successfully; otherwise, false. The default is false.
  1197. </returns>
  1198. <param name="elementName">The name of the unrecognized element.</param>
  1199. <param name="reader">An input stream that reads XML from the configuration file. </param>
  1200. <exception cref="T:System.Configuration.ConfigurationErrorsException">The element specified in <paramref name="elementName"/> is the &lt;clear&gt; element.
  1201. </exception><exception cref="T:System.ArgumentException"><paramref name="elementName"/> starts with the reserved prefix "config" or "lock".
  1202. </exception>
  1203. </member>
  1204. <member name="M:Microsoft.Practices.Unity.Configuration.InjectionMemberElementCollection.CreateNewElement">
  1205. <summary>
  1206. When overridden in a derived class, creates a new <see cref="T:System.Configuration.ConfigurationElement"/>.
  1207. </summary>
  1208. <returns>
  1209. A new <see cref="T:System.Configuration.ConfigurationElement"/>.
  1210. </returns>
  1211. </member>
  1212. <member name="M:Microsoft.Practices.Unity.Configuration.InjectionMemberElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  1213. <summary>
  1214. Gets the element key for a specified configuration element when overridden in a derived class.
  1215. </summary>
  1216. <returns>
  1217. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  1218. </returns>
  1219. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for. </param>
  1220. </member>
  1221. <member name="P:Microsoft.Practices.Unity.Configuration.InjectionMemberElementCollection.Item(System.String)">
  1222. <summary>
  1223. Indexer that lets you access elements by their key.
  1224. </summary>
  1225. <param name="key">Key to retrieve element with.</param>
  1226. <returns>The element.</returns>
  1227. </member>
  1228. <member name="T:Microsoft.Practices.Unity.Configuration.InstanceElement">
  1229. <summary>
  1230. A configuration element that describes an instance to add to the container.
  1231. </summary>
  1232. </member>
  1233. <member name="M:Microsoft.Practices.Unity.Configuration.InstanceElement.SerializeContent(System.Xml.XmlWriter)">
  1234. <summary>
  1235. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  1236. </summary>
  1237. <remarks>The caller of this method has already written the start element tag before
  1238. calling this method, so deriving classes only need to write the element content, not
  1239. the start or end tags.</remarks>
  1240. <param name="writer">Writer to send XML content to.</param>
  1241. </member>
  1242. <member name="M:Microsoft.Practices.Unity.Configuration.InstanceElement.ConfigureContainer(Microsoft.Practices.Unity.IUnityContainer)">
  1243. <summary>
  1244. Add the instance defined by this element to the given container.
  1245. </summary>
  1246. <param name="container">Container to configure.</param>
  1247. </member>
  1248. <member name="P:Microsoft.Practices.Unity.Configuration.InstanceElement.Name">
  1249. <summary>
  1250. Name to register instance under
  1251. </summary>
  1252. </member>
  1253. <member name="P:Microsoft.Practices.Unity.Configuration.InstanceElement.Value">
  1254. <summary>
  1255. Value for this instance
  1256. </summary>
  1257. </member>
  1258. <member name="P:Microsoft.Practices.Unity.Configuration.InstanceElement.TypeName">
  1259. <summary>
  1260. Type of the instance. If not given, defaults to string
  1261. </summary>
  1262. </member>
  1263. <member name="P:Microsoft.Practices.Unity.Configuration.InstanceElement.TypeConverterTypeName">
  1264. <summary>
  1265. Type name for the type converter to use to create the instance. If not
  1266. given, defaults to the default type converter for this instance type.
  1267. </summary>
  1268. </member>
  1269. <member name="P:Microsoft.Practices.Unity.Configuration.InstanceElement.Key">
  1270. <summary>
  1271. Key used to keep these instances unique in the config collection.
  1272. </summary>
  1273. </member>
  1274. <member name="T:Microsoft.Practices.Unity.Configuration.InstanceElementCollection">
  1275. <summary>
  1276. A collection of <see cref="T:Microsoft.Practices.Unity.Configuration.InstanceElement"/>s.
  1277. </summary>
  1278. </member>
  1279. <member name="M:Microsoft.Practices.Unity.Configuration.InstanceElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  1280. <summary>
  1281. Gets the element key for a specified configuration element when overridden in a derived class.
  1282. </summary>
  1283. <returns>
  1284. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  1285. </returns>
  1286. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for. </param>
  1287. </member>
  1288. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.IValueProvidingElement">
  1289. <summary>
  1290. An element that has a child Value property.
  1291. </summary>
  1292. </member>
  1293. <member name="P:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.IValueProvidingElement.Value">
  1294. <summary>
  1295. String that will be deserialized to provide the value.
  1296. </summary>
  1297. </member>
  1298. <member name="P:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.IValueProvidingElement.DestinationName">
  1299. <summary>
  1300. A string describing where the value this element contains
  1301. is being used. For example, if setting a property Prop1,
  1302. this should return "property Prop1" (in english).
  1303. </summary>
  1304. </member>
  1305. <member name="T:Microsoft.Practices.Unity.Configuration.LifetimeElement">
  1306. <summary>
  1307. A configuration element that represents lifetime managers.
  1308. </summary>
  1309. </member>
  1310. <member name="M:Microsoft.Practices.Unity.Configuration.LifetimeElement.CreateLifetimeManager">
  1311. <summary>
  1312. Create the <see cref="T:Microsoft.Practices.Unity.LifetimeManager"/> described by
  1313. this element.
  1314. </summary>
  1315. <returns>A <see cref="T:Microsoft.Practices.Unity.LifetimeManager"/> instance.</returns>
  1316. </member>
  1317. <member name="M:Microsoft.Practices.Unity.Configuration.LifetimeElement.SerializeContent(System.Xml.XmlWriter)">
  1318. <summary>
  1319. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  1320. </summary>
  1321. <remarks>The caller of this method has already written the start element tag before
  1322. calling this method, so deriving classes only need to write the element content, not
  1323. the start or end tags.</remarks>
  1324. <param name="writer">Writer to send XML content to.</param>
  1325. </member>
  1326. <member name="P:Microsoft.Practices.Unity.Configuration.LifetimeElement.TypeName">
  1327. <summary>
  1328. Type of the lifetime manager.
  1329. </summary>
  1330. </member>
  1331. <member name="P:Microsoft.Practices.Unity.Configuration.LifetimeElement.Value">
  1332. <summary>
  1333. Extra initialization information used by the type converter for this lifetime manager.
  1334. </summary>
  1335. </member>
  1336. <member name="P:Microsoft.Practices.Unity.Configuration.LifetimeElement.TypeConverterTypeName">
  1337. <summary>
  1338. Type of <see cref="T:System.ComponentModel.TypeConverter"/> to use to create the
  1339. lifetime manager.
  1340. </summary>
  1341. </member>
  1342. <member name="T:Microsoft.Practices.Unity.Configuration.MethodElement">
  1343. <summary>
  1344. A configuration element representing a method to call.
  1345. </summary>
  1346. </member>
  1347. <member name="M:Microsoft.Practices.Unity.Configuration.MethodElement.#ctor">
  1348. <summary>
  1349. Construct a new instance of <see cref="T:Microsoft.Practices.Unity.Configuration.MethodElement"/>.
  1350. </summary>
  1351. </member>
  1352. <member name="M:Microsoft.Practices.Unity.Configuration.MethodElement.SerializeContent(System.Xml.XmlWriter)">
  1353. <summary>
  1354. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  1355. </summary>
  1356. <remarks>The caller of this method has already written the start element tag before
  1357. calling this method, so deriving classes only need to write the element content, not
  1358. the start or end tags.</remarks>
  1359. <param name="writer">Writer to send XML content to.</param>
  1360. </member>
  1361. <member name="M:Microsoft.Practices.Unity.Configuration.MethodElement.GetInjectionMembers(Microsoft.Practices.Unity.IUnityContainer,System.Type,System.Type,System.String)">
  1362. <summary>
  1363. Return the set of <see cref="T:Microsoft.Practices.Unity.InjectionMember"/>s that are needed
  1364. to configure the container according to this configuration element.
  1365. </summary>
  1366. <param name="container">Container that is being configured.</param>
  1367. <param name="fromType">Type that is being registered.</param>
  1368. <param name="toType">Type that <paramref name="fromType"/> is being mapped to.</param>
  1369. <param name="name">Name this registration is under.</param>
  1370. <returns>One or more <see cref="T:Microsoft.Practices.Unity.InjectionMember"/> objects that should be
  1371. applied to the container registration.</returns>
  1372. </member>
  1373. <member name="P:Microsoft.Practices.Unity.Configuration.MethodElement.Name">
  1374. <summary>
  1375. Name of the method to call.
  1376. </summary>
  1377. </member>
  1378. <member name="P:Microsoft.Practices.Unity.Configuration.MethodElement.Parameters">
  1379. <summary>
  1380. Parameters to the method call.
  1381. </summary>
  1382. </member>
  1383. <member name="P:Microsoft.Practices.Unity.Configuration.MethodElement.Key">
  1384. <summary>
  1385. Each element must have a unique key, which is generated by the subclasses.
  1386. </summary>
  1387. </member>
  1388. <member name="P:Microsoft.Practices.Unity.Configuration.MethodElement.ElementName">
  1389. <summary>
  1390. Element name to use to serialize this into XML.
  1391. </summary>
  1392. </member>
  1393. <member name="T:Microsoft.Practices.Unity.Configuration.NamespaceElement">
  1394. <summary>
  1395. A configuration element representing the namespace
  1396. tags in the config file.
  1397. </summary>
  1398. </member>
  1399. <member name="T:Microsoft.Practices.Unity.Configuration.NamespaceElementCollection">
  1400. <summary>
  1401. A collection of <see cref="T:Microsoft.Practices.Unity.Configuration.NamespaceElement"/>s in configuration.
  1402. </summary>
  1403. </member>
  1404. <member name="M:Microsoft.Practices.Unity.Configuration.NamespaceElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  1405. <summary>
  1406. Gets the element key for a specified configuration element when overridden in a derived class.
  1407. </summary>
  1408. <returns>
  1409. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  1410. </returns>
  1411. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for</param>
  1412. </member>
  1413. <member name="T:Microsoft.Practices.Unity.Configuration.OptionalElement">
  1414. <summary>
  1415. A configuration element that specifies that a value
  1416. is optional.
  1417. </summary>
  1418. </member>
  1419. <member name="M:Microsoft.Practices.Unity.Configuration.OptionalElement.SerializeContent(System.Xml.XmlWriter)">
  1420. <summary>
  1421. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  1422. </summary>
  1423. <remarks>The caller of this method has already written the start element tag before
  1424. calling this method, so deriving classes only need to write the element content, not
  1425. the start or end tags.</remarks>
  1426. <param name="writer">Writer to send XML content to.</param>
  1427. </member>
  1428. <member name="M:Microsoft.Practices.Unity.Configuration.OptionalElement.GetInjectionParameterValue(Microsoft.Practices.Unity.IUnityContainer,System.Type)">
  1429. <summary>
  1430. Generate an <see cref="T:Microsoft.Practices.Unity.InjectionParameterValue"/> object
  1431. that will be used to configure the container for a type registration.
  1432. </summary>
  1433. <param name="container">Container that is being configured. Supplied in order
  1434. to let custom implementations retrieve services; do not configure the container
  1435. directly in this method.</param>
  1436. <param name="parameterType">Type of the </param>
  1437. <returns></returns>
  1438. </member>
  1439. <member name="P:Microsoft.Practices.Unity.Configuration.OptionalElement.Name">
  1440. <summary>
  1441. Name used to resolve the dependency, leave out or blank to resolve default.
  1442. </summary>
  1443. </member>
  1444. <member name="P:Microsoft.Practices.Unity.Configuration.OptionalElement.TypeName">
  1445. <summary>
  1446. Type of dependency to resolve. If left out, resolved the type of
  1447. the containing parameter or property.
  1448. </summary>
  1449. </member>
  1450. <member name="T:Microsoft.Practices.Unity.Configuration.ParameterElement">
  1451. <summary>
  1452. Configuration element representing a parameter passed to a constructor
  1453. or a method.
  1454. </summary>
  1455. </member>
  1456. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterElement.#ctor">
  1457. <summary>
  1458. Construct a new instance of <see cref="T:Microsoft.Practices.Unity.Configuration.ParameterElement"/>.
  1459. </summary>
  1460. </member>
  1461. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterElement.GetParameterValue(Microsoft.Practices.Unity.IUnityContainer,System.Type)">
  1462. <summary>
  1463. Returns the required <see cref="T:Microsoft.Practices.Unity.InjectionParameterValue"/> needed
  1464. to configure the container so that the correct value is injected.
  1465. </summary>
  1466. <param name="container">Container being configured.</param>
  1467. <param name="parameterType">Type of the parameter.</param>
  1468. <returns>The value to use to configure the container.</returns>
  1469. </member>
  1470. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterElement.Matches(System.Reflection.ParameterInfo)">
  1471. <summary>
  1472. Does the information in this <see cref="T:Microsoft.Practices.Unity.Configuration.ParameterElement"/> match
  1473. up with the given <paramref name="parameterInfo"/>?
  1474. </summary>
  1475. <param name="parameterInfo">Information about the parameter.</param>
  1476. <returns>True if this is a match, false if not.</returns>
  1477. </member>
  1478. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)">
  1479. <summary>
  1480. Reads XML from the configuration file.
  1481. </summary>
  1482. <param name="reader">The <see cref="T:System.Xml.XmlReader"/> that reads from the configuration file.</param>
  1483. <param name="serializeCollectionKey">true to serialize only the collection key properties; otherwise, false.</param>
  1484. <exception cref="T:System.Configuration.ConfigurationErrorsException">The element to read is locked.
  1485. - or -
  1486. An attribute of the current node is not recognized.
  1487. - or -
  1488. The lock status of the current node cannot be determined.
  1489. </exception>
  1490. </member>
  1491. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterElement.OnDeserializeUnrecognizedAttribute(System.String,System.String)">
  1492. <summary>
  1493. Gets a value indicating whether an unknown attribute is encountered during deserialization.
  1494. </summary>
  1495. <returns>
  1496. true when an unknown attribute is encountered while deserializing; otherwise, false.
  1497. </returns>
  1498. <param name="name">The name of the unrecognized attribute.</param>
  1499. <param name="value">The value of the unrecognized attribute.</param>
  1500. </member>
  1501. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterElement.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
  1502. <summary>
  1503. Gets a value indicating whether an unknown element is encountered during deserialization.
  1504. </summary>
  1505. <returns>
  1506. true when an unknown element is encountered while deserializing; otherwise, false.
  1507. </returns>
  1508. <param name="elementName">The name of the unknown subelement.</param>
  1509. <param name="reader">The <see cref="T:System.Xml.XmlReader"/> being used for deserialization.</param>
  1510. <exception cref="T:System.Configuration.ConfigurationErrorsException">The element identified by <paramref name="elementName"/> is locked.
  1511. - or -
  1512. One or more of the element's attributes is locked.
  1513. - or -
  1514. <paramref name="elementName"/> is unrecognized, or the element has an unrecognized attribute.
  1515. - or -
  1516. The element has a Boolean attribute with an invalid value.
  1517. - or -
  1518. An attempt was made to deserialize a property more than once.
  1519. - or -
  1520. An attempt was made to deserialize a property that is not a valid member of the element.
  1521. - or -
  1522. The element cannot contain a CDATA or text element.
  1523. </exception>
  1524. </member>
  1525. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterElement.SerializeContent(System.Xml.XmlWriter)">
  1526. <summary>
  1527. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  1528. </summary>
  1529. <remarks>The caller of this method has already written the start element tag before
  1530. calling this method, so deriving classes only need to write the element content, not
  1531. the start or end tags.</remarks>
  1532. <param name="writer">Writer to send XML content to.</param>
  1533. </member>
  1534. <member name="P:Microsoft.Practices.Unity.Configuration.ParameterElement.Name">
  1535. <summary>
  1536. Name of this parameter.
  1537. </summary>
  1538. </member>
  1539. <member name="P:Microsoft.Practices.Unity.Configuration.ParameterElement.TypeName">
  1540. <summary>
  1541. Type of this parameter.
  1542. </summary>
  1543. <remarks>This is only needed in order to disambiguate method overloads. Normally
  1544. the parameter name is sufficient.</remarks>
  1545. </member>
  1546. <member name="P:Microsoft.Practices.Unity.Configuration.ParameterElement.Value">
  1547. <summary>
  1548. Element that describes the value for this property.
  1549. </summary>
  1550. <remarks>
  1551. This is NOT marked as a ConfigurationProperty because this
  1552. child element is polymorphic, and the element tag determines
  1553. the type. Standard configuration properties only let you do
  1554. this if it's a collection, but we only want one value. Thus
  1555. the separate property. The element is deserialized in
  1556. <see cref="M:Microsoft.Practices.Unity.Configuration.ParameterElement.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)"/>.</remarks>
  1557. </member>
  1558. <member name="P:Microsoft.Practices.Unity.Configuration.ParameterElement.DestinationName">
  1559. <summary>
  1560. A string describing where the value this element contains
  1561. is being used. For example, if setting a property Prop1,
  1562. this should return "property Prop1" (in english).
  1563. </summary>
  1564. </member>
  1565. <member name="T:Microsoft.Practices.Unity.Configuration.ParameterElementCollection">
  1566. <summary>
  1567. A collection of <see cref="T:Microsoft.Practices.Unity.Configuration.ParameterElement"/> objects.
  1568. </summary>
  1569. </member>
  1570. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  1571. <summary>
  1572. Gets the element key for a specified configuration element when overridden in a derived class.
  1573. </summary>
  1574. <returns>
  1575. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  1576. </returns>
  1577. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for. </param>
  1578. </member>
  1579. <member name="T:Microsoft.Practices.Unity.Configuration.ParameterValueElementCollection">
  1580. <summary>
  1581. A collection of <see cref="T:Microsoft.Practices.Unity.Configuration.ParameterValueElement"/> objects.
  1582. </summary>
  1583. </member>
  1584. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterValueElementCollection.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
  1585. <summary>
  1586. Causes the configuration system to throw an exception.
  1587. </summary>
  1588. <returns>
  1589. true if the unrecognized element was deserialized successfully; otherwise, false. The default is false.
  1590. </returns>
  1591. <param name="elementName">The name of the unrecognized element. </param>
  1592. <param name="reader">An input stream that reads XML from the configuration file. </param>
  1593. <exception cref="T:System.Configuration.ConfigurationErrorsException">The element specified in <paramref name="elementName"/> is the &lt;clear&gt; element.</exception>
  1594. <exception cref="T:System.ArgumentException"><paramref name="elementName"/> starts with the reserved prefix "config" or "lock".</exception>
  1595. </member>
  1596. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterValueElementCollection.CreateNewElement">
  1597. <summary>
  1598. When overridden in a derived class, creates a new <see cref="T:System.Configuration.ConfigurationElement"/>.
  1599. </summary>
  1600. <returns>
  1601. A new <see cref="T:System.Configuration.ConfigurationElement"/>.
  1602. </returns>
  1603. </member>
  1604. <member name="M:Microsoft.Practices.Unity.Configuration.ParameterValueElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  1605. <summary>
  1606. Gets the element key for a specified configuration element when overridden in a derived class.
  1607. </summary>
  1608. <returns>
  1609. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  1610. </returns>
  1611. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for. </param>
  1612. </member>
  1613. <member name="P:Microsoft.Practices.Unity.Configuration.ParameterValueElementCollection.DeserializedElementHolder.Value">
  1614. <summary>
  1615. String that will be deserialized to provide the value.
  1616. </summary>
  1617. </member>
  1618. <member name="P:Microsoft.Practices.Unity.Configuration.ParameterValueElementCollection.DeserializedElementHolder.DestinationName">
  1619. <summary>
  1620. A string describing where the value this element contains
  1621. is being used. For example, if setting a property Prop1,
  1622. this should return "property Prop1" (in english).
  1623. </summary>
  1624. </member>
  1625. <member name="T:Microsoft.Practices.Unity.Configuration.Properties.Resources">
  1626. <summary>
  1627. A strongly-typed resource class, for looking up localized strings, etc.
  1628. </summary>
  1629. </member>
  1630. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.ResourceManager">
  1631. <summary>
  1632. Returns the cached ResourceManager instance used by this class.
  1633. </summary>
  1634. </member>
  1635. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.Culture">
  1636. <summary>
  1637. Overrides the current thread's CurrentUICulture property for all
  1638. resource lookups using this strongly typed resource class.
  1639. </summary>
  1640. </member>
  1641. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.CannotCreateContainerConfiguringElement">
  1642. <summary>
  1643. Looks up a localized string similar to An abstract ContainerConfiguringElement cannot be created. Please specify a concrete type..
  1644. </summary>
  1645. </member>
  1646. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.CannotCreateExtensionConfigurationElement">
  1647. <summary>
  1648. Looks up a localized string similar to An abstract ExtensionConfigurationElement object cannot be created. Please specify a concrete type..
  1649. </summary>
  1650. </member>
  1651. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.CannotCreateInjectionMemberElement">
  1652. <summary>
  1653. Looks up a localized string similar to An abstract InjectionMemberElement object cannot be created. Please specify a concrete type..
  1654. </summary>
  1655. </member>
  1656. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.CannotCreateParameterValueElement">
  1657. <summary>
  1658. Looks up a localized string similar to An abstract ParameterValueElement object cannot be created. Please specify a concrete type..
  1659. </summary>
  1660. </member>
  1661. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.CouldNotResolveType">
  1662. <summary>
  1663. Looks up a localized string similar to The type name or alias {0} could not be resolved. Please check your configuration file and verify this type name..
  1664. </summary>
  1665. </member>
  1666. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.DependencyForGenericParameterWithTypeSet">
  1667. <summary>
  1668. Looks up a localized string similar to The dependency element for generic parameter {0} must not have an explicit type name but has &apos;{1}&apos;..
  1669. </summary>
  1670. </member>
  1671. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.DependencyForOptionalGenericParameterWithTypeSet">
  1672. <summary>
  1673. Looks up a localized string similar to The optional dependency element for generic parameter {0} must not have an explicit type name but has &apos;{1}&apos;..
  1674. </summary>
  1675. </member>
  1676. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.DestinationNameFormat">
  1677. <summary>
  1678. Looks up a localized string similar to {0} {1}.
  1679. </summary>
  1680. </member>
  1681. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.DuplicateParameterValueElement">
  1682. <summary>
  1683. Looks up a localized string similar to The injection configuration for {0} has multiple values..
  1684. </summary>
  1685. </member>
  1686. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.ElementTypeNotRegistered">
  1687. <summary>
  1688. Looks up a localized string similar to The configuration element type {0} has not been registered with the section..
  1689. </summary>
  1690. </member>
  1691. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.ElementWithAttributesAndParameterValueElements">
  1692. <summary>
  1693. Looks up a localized string similar to The injection configuration for {0} is specified through both attributes and child value elements..
  1694. </summary>
  1695. </member>
  1696. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.ExtensionTypeNotFound">
  1697. <summary>
  1698. Looks up a localized string similar to Could not load section extension type {0}..
  1699. </summary>
  1700. </member>
  1701. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.ExtensionTypeNotValid">
  1702. <summary>
  1703. Looks up a localized string similar to The extension type {0} does not derive from SectionExtension..
  1704. </summary>
  1705. </member>
  1706. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.InvalidExtensionElementType">
  1707. <summary>
  1708. Looks up a localized string similar to The extension element type {0} that is being added does not derive from ContainerConfiguringElement, InjectionMemberElement, or ParameterValueElement. An extension element must derive from one of these types..
  1709. </summary>
  1710. </member>
  1711. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.InvalidValueAttributes">
  1712. <summary>
  1713. Looks up a localized string similar to No valid attributes were found to construct the value for the {0}. Please check the configuration file..
  1714. </summary>
  1715. </member>
  1716. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.NoMatchingConstructor">
  1717. <summary>
  1718. Looks up a localized string similar to Configuration is incorrect, the type {0} does not have a constructor that takes parameters named {1}..
  1719. </summary>
  1720. </member>
  1721. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.NoMatchingMethod">
  1722. <summary>
  1723. Looks up a localized string similar to Configuration is incorrect, the type {0} does not have a method named {1} that takes parameters named {2}..
  1724. </summary>
  1725. </member>
  1726. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.NoSuchContainer">
  1727. <summary>
  1728. Looks up a localized string similar to The container named &quot;{0}&quot; is not defined in this configuration section..
  1729. </summary>
  1730. </member>
  1731. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.NoSuchProperty">
  1732. <summary>
  1733. Looks up a localized string similar to The type {0} does not have a property named {1}..
  1734. </summary>
  1735. </member>
  1736. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.NotAnArray">
  1737. <summary>
  1738. Looks up a localized string similar to The configuration is set to inject an array, but the type {0} is not an array type..
  1739. </summary>
  1740. </member>
  1741. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.Parameter">
  1742. <summary>
  1743. Looks up a localized string similar to parameter.
  1744. </summary>
  1745. </member>
  1746. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.Property">
  1747. <summary>
  1748. Looks up a localized string similar to property.
  1749. </summary>
  1750. </member>
  1751. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.RequiredPropertyMissing">
  1752. <summary>
  1753. Looks up a localized string similar to The attribute {0} must be present and non-empty..
  1754. </summary>
  1755. </member>
  1756. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.ValueNotAllowedForGenericArrayType">
  1757. <summary>
  1758. Looks up a localized string similar to The value element for {1} was specified for the generic array type {0}. Value elements are not allowed for generic array types..
  1759. </summary>
  1760. </member>
  1761. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.ValueNotAllowedForGenericParameterType">
  1762. <summary>
  1763. Looks up a localized string similar to The value element for {1} was specified for the generic parameter type {0}. Value elements are not allowed for generic parameter types..
  1764. </summary>
  1765. </member>
  1766. <member name="P:Microsoft.Practices.Unity.Configuration.Properties.Resources.ValueNotAllowedForOpenGenericType">
  1767. <summary>
  1768. Looks up a localized string similar to The value element for {1} was specified for the generic type {0}. Value elements are not allowed for generic types..
  1769. </summary>
  1770. </member>
  1771. <member name="T:Microsoft.Practices.Unity.Configuration.PropertyElement">
  1772. <summary>
  1773. A class representing a property configuration element.
  1774. </summary>
  1775. </member>
  1776. <member name="M:Microsoft.Practices.Unity.Configuration.PropertyElement.#ctor">
  1777. <summary>
  1778. Construct a new instance of <see cref="T:Microsoft.Practices.Unity.Configuration.PropertyElement"/>
  1779. </summary>
  1780. </member>
  1781. <member name="M:Microsoft.Practices.Unity.Configuration.PropertyElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)">
  1782. <summary>
  1783. Reads XML from the configuration file.
  1784. </summary>
  1785. <param name="reader">The <see cref="T:System.Xml.XmlReader"/> that reads from the configuration file.</param>
  1786. <param name="serializeCollectionKey">true to serialize only the collection key properties; otherwise, false.</param>
  1787. <exception cref="T:System.Configuration.ConfigurationErrorsException">The element to read is locked.
  1788. - or -
  1789. An attribute of the current node is not recognized.
  1790. - or -
  1791. The lock status of the current node cannot be determined.
  1792. </exception>
  1793. </member>
  1794. <member name="M:Microsoft.Practices.Unity.Configuration.PropertyElement.OnDeserializeUnrecognizedAttribute(System.String,System.String)">
  1795. <summary>
  1796. Gets a value indicating whether an unknown attribute is encountered during deserialization.
  1797. </summary>
  1798. <returns>
  1799. true when an unknown attribute is encountered while deserializing; otherwise, false.
  1800. </returns>
  1801. <param name="name">The name of the unrecognized attribute.</param>
  1802. <param name="value">The value of the unrecognized attribute.</param>
  1803. </member>
  1804. <member name="M:Microsoft.Practices.Unity.Configuration.PropertyElement.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
  1805. <summary>
  1806. Gets a value indicating whether an unknown element is encountered during deserialization.
  1807. </summary>
  1808. <returns>
  1809. true when an unknown element is encountered while deserializing; otherwise, false.
  1810. </returns>
  1811. <param name="elementName">The name of the unknown subelement.</param>
  1812. <param name="reader">The <see cref="T:System.Xml.XmlReader"/> being used for deserialization.</param>
  1813. <exception cref="T:System.Configuration.ConfigurationErrorsException">The element identified by <paramref name="elementName"/> is locked.
  1814. - or -
  1815. One or more of the element's attributes is locked.
  1816. - or -
  1817. <paramref name="elementName"/> is unrecognized, or the element has an unrecognized attribute.
  1818. - or -
  1819. The element has a Boolean attribute with an invalid value.
  1820. - or -
  1821. An attempt was made to deserialize a property more than once.
  1822. - or -
  1823. An attempt was made to deserialize a property that is not a valid member of the element.
  1824. - or -
  1825. The element cannot contain a CDATA or text element.
  1826. </exception>
  1827. </member>
  1828. <member name="M:Microsoft.Practices.Unity.Configuration.PropertyElement.SerializeContent(System.Xml.XmlWriter)">
  1829. <summary>
  1830. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  1831. </summary>
  1832. <remarks>The caller of this method has already written the start element tag before
  1833. calling this method, so deriving classes only need to write the element content, not
  1834. the start or end tags.</remarks>
  1835. <param name="writer">Writer to send XML content to.</param>
  1836. </member>
  1837. <member name="M:Microsoft.Practices.Unity.Configuration.PropertyElement.GetInjectionMembers(Microsoft.Practices.Unity.IUnityContainer,System.Type,System.Type,System.String)">
  1838. <summary>
  1839. Return the set of <see cref="T:Microsoft.Practices.Unity.InjectionMember"/>s that are needed
  1840. to configure the container according to this configuration element.
  1841. </summary>
  1842. <param name="container">Container that is being configured.</param>
  1843. <param name="fromType">Type that is being registered.</param>
  1844. <param name="toType">Type that <paramref name="fromType"/> is being mapped to.</param>
  1845. <param name="name">Name this registration is under.</param>
  1846. <returns>One or more <see cref="T:Microsoft.Practices.Unity.InjectionMember"/> objects that should be
  1847. applied to the container registration.</returns>
  1848. </member>
  1849. <member name="P:Microsoft.Practices.Unity.Configuration.PropertyElement.Name">
  1850. <summary>
  1851. Name of the property that will be set.
  1852. </summary>
  1853. </member>
  1854. <member name="P:Microsoft.Practices.Unity.Configuration.PropertyElement.Key">
  1855. <summary>
  1856. Each element must have a unique key, which is generated by the subclasses.
  1857. </summary>
  1858. </member>
  1859. <member name="P:Microsoft.Practices.Unity.Configuration.PropertyElement.Value">
  1860. <summary>
  1861. String that will be deserialized to provide the value.
  1862. </summary>
  1863. </member>
  1864. <member name="P:Microsoft.Practices.Unity.Configuration.PropertyElement.DestinationName">
  1865. <summary>
  1866. A string describing where the value this element contains
  1867. is being used. For example, if setting a property Prop1,
  1868. this should return "property Prop1" (in english).
  1869. </summary>
  1870. </member>
  1871. <member name="P:Microsoft.Practices.Unity.Configuration.PropertyElement.ElementName">
  1872. <summary>
  1873. Element name to use to serialize this into XML.
  1874. </summary>
  1875. </member>
  1876. <member name="T:Microsoft.Practices.Unity.Configuration.RegisterElement">
  1877. <summary>
  1878. A configuration element representing a single container type registration.
  1879. </summary>
  1880. </member>
  1881. <member name="M:Microsoft.Practices.Unity.Configuration.RegisterElement.ConfigureContainer(Microsoft.Practices.Unity.IUnityContainer)">
  1882. <summary>
  1883. Apply the registrations from this element to the given container.
  1884. </summary>
  1885. <param name="container">Container to configure.</param>
  1886. </member>
  1887. <member name="M:Microsoft.Practices.Unity.Configuration.RegisterElement.SerializeContent(System.Xml.XmlWriter)">
  1888. <summary>
  1889. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  1890. </summary>
  1891. <remarks>The caller of this method has already written the start element tag before
  1892. calling this method, so deriving classes only need to write the element content, not
  1893. the start or end tags.</remarks>
  1894. <param name="writer">Writer to send XML content to.</param>
  1895. </member>
  1896. <member name="P:Microsoft.Practices.Unity.Configuration.RegisterElement.TypeName">
  1897. <summary>
  1898. The type that is registered.
  1899. </summary>
  1900. </member>
  1901. <member name="P:Microsoft.Practices.Unity.Configuration.RegisterElement.Name">
  1902. <summary>
  1903. Name registered under.
  1904. </summary>
  1905. </member>
  1906. <member name="P:Microsoft.Practices.Unity.Configuration.RegisterElement.MapToName">
  1907. <summary>
  1908. Type that is mapped to.
  1909. </summary>
  1910. </member>
  1911. <member name="P:Microsoft.Practices.Unity.Configuration.RegisterElement.Lifetime">
  1912. <summary>
  1913. Lifetime manager to register for this registration.
  1914. </summary>
  1915. </member>
  1916. <member name="P:Microsoft.Practices.Unity.Configuration.RegisterElement.InjectionMembers">
  1917. <summary>
  1918. Any injection members (constructor, properties, etc.) that are specified for
  1919. this registration.
  1920. </summary>
  1921. </member>
  1922. <member name="T:Microsoft.Practices.Unity.Configuration.RegisterElementCollection">
  1923. <summary>
  1924. A collection of <see cref="T:Microsoft.Practices.Unity.Configuration.RegisterElement"/>s.
  1925. </summary>
  1926. </member>
  1927. <member name="M:Microsoft.Practices.Unity.Configuration.RegisterElementCollection.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
  1928. <summary>
  1929. Causes the configuration system to throw an exception.
  1930. </summary>
  1931. <returns>
  1932. true if the unrecognized element was deserialized successfully; otherwise, false. The default is false.
  1933. </returns>
  1934. <param name="elementName">The name of the unrecognized element. </param>
  1935. <param name="reader">An input stream that reads XML from the configuration file. </param>
  1936. <exception cref="T:System.Configuration.ConfigurationErrorsException">The element specified in <paramref name="elementName"/> is the &lt;clear&gt; element.</exception>
  1937. <exception cref="T:System.ArgumentException"><paramref name="elementName"/> starts with the reserved prefix "config" or "lock".</exception>
  1938. </member>
  1939. <member name="M:Microsoft.Practices.Unity.Configuration.RegisterElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  1940. <summary>
  1941. Gets the element key for a specified configuration element when overridden in a derived class.
  1942. </summary>
  1943. <returns>
  1944. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  1945. </returns>
  1946. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for. </param>
  1947. </member>
  1948. <member name="T:Microsoft.Practices.Unity.Configuration.SectionExtension">
  1949. <summary>
  1950. Base class for Unity configuration section extensions.
  1951. Derived classes are used to add custom elements and aliases
  1952. into the configuration section being loaded.
  1953. </summary>
  1954. </member>
  1955. <member name="M:Microsoft.Practices.Unity.Configuration.SectionExtension.AddExtensions(Microsoft.Practices.Unity.Configuration.SectionExtensionContext)">
  1956. <summary>
  1957. Add the extensions to the section via the context.
  1958. </summary>
  1959. <param name="context">Context object that can be used to add elements and aliases.</param>
  1960. </member>
  1961. <member name="T:Microsoft.Practices.Unity.Configuration.SectionExtensionContext">
  1962. <summary>
  1963. An object that gives the ability to add
  1964. elements and aliases to a configuration section.
  1965. </summary>
  1966. </member>
  1967. <member name="M:Microsoft.Practices.Unity.Configuration.SectionExtensionContext.AddAlias(System.String,System.Type)">
  1968. <summary>
  1969. Add a new alias to the configuration section. This is useful
  1970. for those extensions that add commonly used types to configuration
  1971. so users don't have to alias them repeatedly.
  1972. </summary>
  1973. <param name="newAlias">The alias to use.</param>
  1974. <param name="aliasedType">Type the alias maps to.</param>
  1975. </member>
  1976. <member name="M:Microsoft.Practices.Unity.Configuration.SectionExtensionContext.AddAlias``1(System.String)">
  1977. <summary>
  1978. Add a new alias to the configuration section. This is useful
  1979. for those extensions that add commonly used types to configuration
  1980. so users don't have to alias them repeatedly.
  1981. </summary>
  1982. <typeparam name="TAliased">Type the alias maps to.</typeparam>
  1983. <param name="alias">The alias to use</param>
  1984. </member>
  1985. <member name="M:Microsoft.Practices.Unity.Configuration.SectionExtensionContext.AddElement(System.String,System.Type)">
  1986. <summary>
  1987. Add a new element to the configuration section schema.
  1988. </summary>
  1989. <param name="tag">Tag name in the XML.</param>
  1990. <param name="elementType">Type the tag maps to.</param>
  1991. </member>
  1992. <member name="M:Microsoft.Practices.Unity.Configuration.SectionExtensionContext.AddElement``1(System.String)">
  1993. <summary>
  1994. Add a new element to the configuration section schema.
  1995. </summary>
  1996. <typeparam name="TElement">Type the tag maps to.</typeparam>
  1997. <param name="tag">Tag name in the XML.</param>
  1998. </member>
  1999. <member name="T:Microsoft.Practices.Unity.Configuration.SectionExtensionElement">
  2000. <summary>
  2001. A configuration element used to specify which extensions to
  2002. add to the configuration schema.
  2003. </summary>
  2004. </member>
  2005. <member name="M:Microsoft.Practices.Unity.Configuration.SectionExtensionElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)">
  2006. <summary>
  2007. Reads XML from the configuration file.
  2008. </summary>
  2009. <param name="reader">The <see cref="T:System.Xml.XmlReader"/> that reads from the configuration file.</param>
  2010. <param name="serializeCollectionKey">true to serialize only the collection key properties; otherwise, false.</param>
  2011. <exception cref="T:System.Configuration.ConfigurationErrorsException">The element to read is locked.
  2012. - or -
  2013. An attribute of the current node is not recognized.
  2014. - or -
  2015. The lock status of the current node cannot be determined.
  2016. </exception>
  2017. </member>
  2018. <member name="M:Microsoft.Practices.Unity.Configuration.SectionExtensionElement.SerializeContent(System.Xml.XmlWriter)">
  2019. <summary>
  2020. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  2021. </summary>
  2022. <remarks>The caller of this method has already written the start element tag before
  2023. calling this method, so deriving classes only need to write the element content, not
  2024. the start or end tags.</remarks>
  2025. <param name="writer">Writer to send XML content to.</param>
  2026. </member>
  2027. <member name="P:Microsoft.Practices.Unity.Configuration.SectionExtensionElement.TypeName">
  2028. <summary>
  2029. Type of the section extender object that will provide new elements to the schema.
  2030. </summary>
  2031. </member>
  2032. <member name="P:Microsoft.Practices.Unity.Configuration.SectionExtensionElement.Prefix">
  2033. <summary>
  2034. Optional prefix that will be added to the element names added by this
  2035. section extender. If left out, no prefix will be added.
  2036. </summary>
  2037. </member>
  2038. <member name="P:Microsoft.Practices.Unity.Configuration.SectionExtensionElement.ExtensionObject">
  2039. <summary>
  2040. The extension object represented by this element.
  2041. </summary>
  2042. </member>
  2043. <member name="T:Microsoft.Practices.Unity.Configuration.SectionExtensionElementCollection">
  2044. <summary>
  2045. A collection of <see cref="T:Microsoft.Practices.Unity.Configuration.SectionExtensionElement"/>s.
  2046. </summary>
  2047. </member>
  2048. <member name="M:Microsoft.Practices.Unity.Configuration.SectionExtensionElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  2049. <summary>
  2050. Gets the element key for a specified configuration element when overridden in a derived class.
  2051. </summary>
  2052. <returns>
  2053. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  2054. </returns>
  2055. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for. </param>
  2056. </member>
  2057. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeResolver">
  2058. <summary>
  2059. Type that manage access to a set of type aliases and implements
  2060. the logic for converting aliases to their actual types.
  2061. </summary>
  2062. </member>
  2063. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeResolver.SetAliases(Microsoft.Practices.Unity.Configuration.UnityConfigurationSection)">
  2064. <summary>
  2065. Set the set of aliases to use for resolution.
  2066. </summary>
  2067. <param name="section">Configuration section containing the various
  2068. type aliases, namespaces and assemblies.</param>
  2069. </member>
  2070. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeResolver.ResolveType(System.String)">
  2071. <summary>
  2072. Resolves a type alias or type FullName to a concrete type.
  2073. </summary>
  2074. <param name="typeNameOrAlias">Type alias or type FullName</param>
  2075. <returns>Type object or null if resolve fails.</returns>
  2076. <exception cref="T:System.InvalidOperationException">Thrown if alias lookup fails.</exception>
  2077. </member>
  2078. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeResolver.ResolveType(System.String,System.Boolean)">
  2079. <summary>
  2080. Resolves a type alias or type FullName to a concrete type.
  2081. </summary>
  2082. <param name="typeNameOrAlias">Alias or name to resolve.</param>
  2083. <param name="throwIfResolveFails">if true and the alias does not
  2084. resolve, throw an <see cref="T:System.InvalidOperationException"/>, otherwise
  2085. return null on failure.</param>
  2086. <returns>The type object or null if resolve fails and
  2087. <paramref name="throwIfResolveFails"/> is false.</returns>
  2088. </member>
  2089. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeResolver.ResolveTypeWithDefault(System.String,System.Type)">
  2090. <summary>
  2091. Resolve a type alias or type full name to a concrete type.
  2092. If <paramref name="typeNameOrAlias"/> is null or empty, return the
  2093. given <paramref name="defaultValue"/> instead.
  2094. </summary>
  2095. <param name="typeNameOrAlias">Type alias or full name to resolve.</param>
  2096. <param name="defaultValue">Value to return if typeName is null or empty.</param>
  2097. <returns>The concrete <see cref="T:System.Type"/>.</returns>
  2098. <exception cref="T:System.InvalidOperationException">Thrown if alias lookup fails.</exception>
  2099. </member>
  2100. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeResolver.ResolveTypeWithDefault(System.String,System.Type,System.Boolean)">
  2101. <summary>
  2102. Resolve a type alias or type full name to a concrete type.
  2103. If <paramref name="typeNameOrAlias"/> is null or empty, return the
  2104. given <paramref name="defaultValue"/> instead.
  2105. </summary>
  2106. <param name="typeNameOrAlias">Type alias or full name to resolve.</param>
  2107. <param name="defaultValue">Value to return if typeName is null or empty.</param>
  2108. <param name="throwIfResolveFails">if true and the alias does not
  2109. resolve, throw an <see cref="T:System.InvalidOperationException"/>, otherwise
  2110. return null on failure.</param>
  2111. <returns>The concrete <see cref="T:System.Type"/>.</returns>
  2112. <exception cref="T:System.InvalidOperationException">Thrown if alias lookup fails and
  2113. <paramref name="throwIfResolveFails"/> is true.</exception>
  2114. </member>
  2115. <member name="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeResolverImpl">
  2116. <summary>
  2117. A helper class that implements the actual logic for resolving a shorthand
  2118. type name (alias or raw type name) into an actual type object.
  2119. </summary>
  2120. </member>
  2121. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeResolverImpl.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}},System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{System.String})">
  2122. <summary>
  2123. Construct a new <see cref="T:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeResolverImpl"/> that uses the given
  2124. sequence of alias, type name pairs to resolve types.
  2125. </summary>
  2126. <param name="aliasesSequence">Type aliases from the configuration file.</param>
  2127. <param name="assemblies">Assembly names to search.</param>
  2128. <param name="namespaces">Namespaces to search.</param>
  2129. </member>
  2130. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeResolverImpl.ResolveType(System.String,System.Boolean)">
  2131. <summary>
  2132. Resolves a type alias or type FullName to a concrete type.
  2133. </summary>
  2134. <param name="typeNameOrAlias">Alias or name to resolve.</param>
  2135. <param name="throwIfResolveFails">if true and the alias does not
  2136. resolve, throw an <see cref="T:System.InvalidOperationException"/>, otherwise
  2137. return null on failure.</param>
  2138. <returns>The type object or null if resolve fails and
  2139. <paramref name="throwIfResolveFails"/> is false.</returns>
  2140. </member>
  2141. <member name="M:Microsoft.Practices.Unity.Configuration.ConfigurationHelpers.TypeResolverImpl.ResolveTypeWithDefault(System.String,System.Type,System.Boolean)">
  2142. <summary>
  2143. Resolve a type alias or type full name to a concrete type.
  2144. If <paramref name="typeNameOrAlias"/> is null or empty, return the
  2145. given <paramref name="defaultValue"/> instead.
  2146. </summary>
  2147. <param name="typeNameOrAlias">Type alias or full name to resolve.</param>
  2148. <param name="defaultValue">Value to return if typeName is null or empty.</param>
  2149. <param name="throwIfResolveFails">if true and the alias does not
  2150. resolve, throw an <see cref="T:System.InvalidOperationException"/>, otherwise
  2151. return null on failure.</param>
  2152. <returns>
  2153. <para>If <paramref name="typeNameOrAlias"/> is null or an empty string,
  2154. then return <paramref name="defaultValue"/>.</para>
  2155. <para>Otherwise, return the resolved type object. If the resolution fails
  2156. and <paramref name="throwIfResolveFails"/> is false, then return null.</para>
  2157. </returns>
  2158. </member>
  2159. <member name="T:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection">
  2160. <summary>
  2161. A configuration section describing configuration for an <see cref="T:Microsoft.Practices.Unity.IUnityContainer"/>.
  2162. </summary>
  2163. </member>
  2164. <member name="F:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.SectionName">
  2165. <summary>
  2166. The name of the section where unity configuration is expected to be found.
  2167. </summary>
  2168. </member>
  2169. <member name="F:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.XmlNamespace">
  2170. <summary>
  2171. XML Namespace string used for IntelliSense in this section.
  2172. </summary>
  2173. </member>
  2174. <member name="M:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.Configure(Microsoft.Practices.Unity.IUnityContainer)">
  2175. <summary>
  2176. Apply the configuration in the default container element to the given container.
  2177. </summary>
  2178. <param name="container">Container to configure.</param>
  2179. <returns>The passed in <paramref name="container"/>.</returns>
  2180. </member>
  2181. <member name="M:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.Configure(Microsoft.Practices.Unity.IUnityContainer,System.String)">
  2182. <summary>
  2183. Apply the configuration in the default container element to the given container.
  2184. </summary>
  2185. <param name="container">Container to configure.</param>
  2186. <param name="configuredContainerName">Name of the container element to use to configure the container.</param>
  2187. <returns>The passed in <paramref name="container"/>.</returns>
  2188. </member>
  2189. <member name="M:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.DeserializeSection(System.Xml.XmlReader)">
  2190. <summary>
  2191. Reads XML from the configuration file.
  2192. </summary>
  2193. <param name="reader">The <see cref="T:System.Xml.XmlReader"/> object, which reads from the configuration file. </param>
  2194. <exception cref="T:System.Configuration.ConfigurationErrorsException"><paramref name="reader"/> found no elements in the configuration file.</exception>
  2195. </member>
  2196. <member name="M:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
  2197. <summary>
  2198. Gets a value indicating whether an unknown element is encountered during deserialization.
  2199. </summary>
  2200. <returns>
  2201. true when an unknown element is encountered while deserializing; otherwise, false.
  2202. </returns>
  2203. <param name="elementName">The name of the unknown subelement.</param>
  2204. <param name="reader">The <see cref="T:System.Xml.XmlReader"/> being used for deserialization.</param>
  2205. <exception cref="T:System.Configuration.ConfigurationErrorsException">
  2206. The element identified by <paramref name="elementName"/> is locked.
  2207. - or -
  2208. One or more of the element's attributes is locked.
  2209. - or -
  2210. <paramref name="elementName"/> is unrecognized, or the element has an unrecognized attribute.
  2211. - or -
  2212. The element has a Boolean attribute with an invalid value.
  2213. - or -
  2214. An attempt was made to deserialize a property more than once.
  2215. - or -
  2216. An attempt was made to deserialize a property that is not a valid member of the element.
  2217. - or -
  2218. The element cannot contain a CDATA or text element.
  2219. </exception>
  2220. </member>
  2221. <member name="M:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)">
  2222. <summary>
  2223. Creates an XML string containing an unmerged view of the <see cref="T:System.Configuration.ConfigurationSection"/> object as a single section to write to a file.
  2224. </summary>
  2225. <returns>
  2226. An XML string containing an unmerged view of the <see cref="T:System.Configuration.ConfigurationSection"/> object.
  2227. </returns>
  2228. <param name="parentElement">The <see cref="T:System.Configuration.ConfigurationElement"/> instance to use as the parent when performing the un-merge.</param>
  2229. <param name="name">The name of the section to create.</param>
  2230. <param name="saveMode">The <see cref="T:System.Configuration.ConfigurationSaveMode"/> instance to use when writing to a string.</param>
  2231. </member>
  2232. <member name="P:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.CurrentSection">
  2233. <summary>
  2234. The current <see cref="T:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection"/> that is being deserialized
  2235. or being configured from.
  2236. </summary>
  2237. </member>
  2238. <member name="P:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.Xmlns">
  2239. <summary>
  2240. Storage for XML namespace. The namespace isn't used or validated by config, but
  2241. it is useful for Visual Studio XML IntelliSense to kick in.
  2242. </summary>
  2243. </member>
  2244. <member name="P:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.Containers">
  2245. <summary>
  2246. The set of containers defined in this configuration section.
  2247. </summary>
  2248. </member>
  2249. <member name="P:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.TypeAliases">
  2250. <summary>
  2251. The set of type aliases defined in this configuration file.
  2252. </summary>
  2253. </member>
  2254. <member name="P:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.SectionExtensions">
  2255. <summary>
  2256. Any schema extensions that are added.
  2257. </summary>
  2258. </member>
  2259. <member name="P:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.Namespaces">
  2260. <summary>
  2261. Any namespaces added to the type search list.
  2262. </summary>
  2263. </member>
  2264. <member name="P:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.Assemblies">
  2265. <summary>
  2266. Any assemblies added to the type search list.
  2267. </summary>
  2268. </member>
  2269. <member name="M:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.ExtensionContext.AddAlias(System.String,System.Type)">
  2270. <summary>
  2271. Add a new alias to the configuration section. This is useful
  2272. for those extensions that add commonly used types to configuration
  2273. so users don't have to alias them repeatedly.
  2274. </summary>
  2275. <param name="newAlias">The alias to use.</param>
  2276. <param name="aliasedType">Type the alias maps to.</param>
  2277. </member>
  2278. <member name="M:Microsoft.Practices.Unity.Configuration.UnityConfigurationSection.ExtensionContext.AddElement(System.String,System.Type)">
  2279. <summary>
  2280. Add a new element to the configuration section schema.
  2281. </summary>
  2282. <param name="tag">Tag name in the XML.</param>
  2283. <param name="elementType">Type the tag maps to.</param>
  2284. </member>
  2285. <member name="T:Microsoft.Practices.Unity.Configuration.ContainerElementCollection">
  2286. <summary>
  2287. Collection element for <see cref="T:Microsoft.Practices.Unity.Configuration.ContainerElement"/>s.
  2288. </summary>
  2289. </member>
  2290. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerElementCollection.GetElement(System.Int32)">
  2291. <summary>
  2292. Plug point to get objects out of the collection.
  2293. </summary>
  2294. <param name="index">Index in the collection to retrieve the item from.</param>
  2295. <returns>Item at that index or null if not present.</returns>
  2296. </member>
  2297. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerElementCollection.GetElement(System.Object)">
  2298. <summary>
  2299. Plug point to get objects out of the collection.
  2300. </summary>
  2301. <param name="key">Key to look up the object by.</param>
  2302. <returns>Item with that key or null if not present.</returns>
  2303. </member>
  2304. <member name="M:Microsoft.Practices.Unity.Configuration.ContainerElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  2305. <summary>
  2306. Gets the element key for a specified configuration element when overridden in a derived class.
  2307. </summary>
  2308. <returns>
  2309. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  2310. </returns>
  2311. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for. </param>
  2312. </member>
  2313. <member name="P:Microsoft.Practices.Unity.Configuration.ContainerElementCollection.Item(System.String)">
  2314. <summary>
  2315. Retrieve a stored <see cref="T:Microsoft.Practices.Unity.Configuration.ContainerElement"/> by name.
  2316. </summary>
  2317. <param name="name">Name to look up.</param>
  2318. <returns>The stored container or null if not in the collection.</returns>
  2319. </member>
  2320. <member name="P:Microsoft.Practices.Unity.Configuration.ContainerElementCollection.Default">
  2321. <summary>
  2322. Return the default container in the collection. The default is the one without a name.
  2323. </summary>
  2324. </member>
  2325. <member name="T:Microsoft.Practices.Unity.Configuration.UnityContainerExtensions">
  2326. <summary>
  2327. Extensions to <see cref="T:Microsoft.Practices.Unity.IUnityContainer"/> to simplify
  2328. loading configuration into a container.
  2329. </summary>
  2330. </member>
  2331. <member name="M:Microsoft.Practices.Unity.Configuration.UnityContainerExtensions.LoadConfiguration(Microsoft.Practices.Unity.IUnityContainer,Microsoft.Practices.Unity.Configuration.UnityConfigurationSection,System.String)">
  2332. <summary>
  2333. Apply configuration from the given section and named container
  2334. into the given container.
  2335. </summary>
  2336. <param name="container">Unity container to configure.</param>
  2337. <param name="section">Configuration section with config information.</param>
  2338. <param name="containerName">Named container.</param>
  2339. <returns><paramref name="container"/>.</returns>
  2340. </member>
  2341. <member name="M:Microsoft.Practices.Unity.Configuration.UnityContainerExtensions.LoadConfiguration(Microsoft.Practices.Unity.IUnityContainer,System.String)">
  2342. <summary>
  2343. Apply configuration from the default section (named "unity" pulled out of
  2344. ConfigurationManager) and the named container.
  2345. </summary>
  2346. <param name="container">Unity container to configure.</param>
  2347. <param name="containerName">Named container element in configuration.</param>
  2348. <returns><paramref name="container"/>.</returns>
  2349. </member>
  2350. <member name="M:Microsoft.Practices.Unity.Configuration.UnityContainerExtensions.LoadConfiguration(Microsoft.Practices.Unity.IUnityContainer)">
  2351. <summary>
  2352. Apply configuration from the default section and unnamed container element.
  2353. </summary>
  2354. <param name="container">Container to configure.</param>
  2355. <returns><paramref name="container"/>.</returns>
  2356. </member>
  2357. <member name="M:Microsoft.Practices.Unity.Configuration.UnityContainerExtensions.LoadConfiguration(Microsoft.Practices.Unity.IUnityContainer,Microsoft.Practices.Unity.Configuration.UnityConfigurationSection)">
  2358. <summary>
  2359. Apply configuration from the default container in the given section.
  2360. </summary>
  2361. <param name="container">Unity container to configure.</param>
  2362. <param name="section">Configuration section.</param>
  2363. <returns><paramref name="container"/>.</returns>
  2364. </member>
  2365. <member name="T:Microsoft.Practices.Unity.Configuration.ValueElement">
  2366. <summary>
  2367. Element that describes a constant value that will be
  2368. injected into the container.
  2369. </summary>
  2370. </member>
  2371. <member name="M:Microsoft.Practices.Unity.Configuration.ValueElement.#ctor">
  2372. <summary>
  2373. Construct a new <see cref="T:Microsoft.Practices.Unity.Configuration.ValueElement"/> object.
  2374. </summary>
  2375. </member>
  2376. <member name="M:Microsoft.Practices.Unity.Configuration.ValueElement.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})">
  2377. <summary>
  2378. Construct a new <see cref="T:Microsoft.Practices.Unity.Configuration.ValueElement"/> object,
  2379. initializing properties from the contents of
  2380. <paramref name="propertyValues"/>.
  2381. </summary>
  2382. <param name="propertyValues">Name/value pairs which
  2383. contain the values to initialize properties to.</param>
  2384. </member>
  2385. <member name="M:Microsoft.Practices.Unity.Configuration.ValueElement.Microsoft#Practices#Unity#Configuration#IAttributeOnlyElement#SerializeContent(System.Xml.XmlWriter)">
  2386. <summary>
  2387. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
  2388. </summary>
  2389. <remarks>The caller of this method has already written the start element tag before
  2390. calling this method, so deriving classes only need to write the element content, not
  2391. the start or end tags.</remarks>
  2392. <param name="writer">Writer to send XML content to.</param>
  2393. </member>
  2394. <member name="M:Microsoft.Practices.Unity.Configuration.ValueElement.SerializeContent(System.Xml.XmlWriter)">
  2395. <summary>
  2396. Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>. This
  2397. method always outputs an explicit &lt;dependency&gt; tag, instead of providing
  2398. attributes to the parent method.
  2399. </summary>
  2400. <param name="writer">Writer to send XML content to.</param>
  2401. </member>
  2402. <member name="M:Microsoft.Practices.Unity.Configuration.ValueElement.GetInjectionParameterValue(Microsoft.Practices.Unity.IUnityContainer,System.Type)">
  2403. <summary>
  2404. Generate an <see cref="T:Microsoft.Practices.Unity.InjectionParameterValue"/> object
  2405. that will be used to configure the container for a type registration.
  2406. </summary>
  2407. <param name="container">Container that is being configured. Supplied in order
  2408. to let custom implementations retrieve services; do not configure the container
  2409. directly in this method.</param>
  2410. <param name="parameterType">Type of the parameter to get the value for.</param>
  2411. <returns>The required <see cref="T:Microsoft.Practices.Unity.InjectionParameterValue"/> object.</returns>
  2412. </member>
  2413. <member name="P:Microsoft.Practices.Unity.Configuration.ValueElement.Value">
  2414. <summary>
  2415. Value for this element
  2416. </summary>
  2417. </member>
  2418. <member name="P:Microsoft.Practices.Unity.Configuration.ValueElement.TypeConverterTypeName">
  2419. <summary>
  2420. </summary>
  2421. </member>
  2422. </members>
  2423. </doc>