castle.core 1.0.3.0 → 1.1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/Castle.Core.dll +0 -0
- data/lib/Castle.Core.xml +306 -158
- metadata +3 -3
data/lib/Castle.Core.dll
CHANGED
Binary file
|
data/lib/Castle.Core.xml
CHANGED
@@ -212,7 +212,7 @@
|
|
212
212
|
<summary>
|
213
213
|
Initializes a new instance of the <see cref="T:Castle.Core.CustomLifestyleAttribute"/> class.
|
214
214
|
</summary>
|
215
|
-
<param name="
|
215
|
+
<param name="lifestyleHandlerType">The lifestyle handler.</param>
|
216
216
|
</member>
|
217
217
|
<member name="P:Castle.Core.CustomLifestyleAttribute.LifestyleHandlerType">
|
218
218
|
<summary>
|
@@ -483,14 +483,14 @@
|
|
483
483
|
<summary>
|
484
484
|
Gets the configuration file.
|
485
485
|
</summary>
|
486
|
-
<param name="
|
486
|
+
<param name="fileName">i.e. log4net.config</param>
|
487
487
|
<returns></returns>
|
488
488
|
</member>
|
489
489
|
<member name="M:Castle.Core.Logging.AbstractLoggerFactory.GetConfigFile(System.String)">
|
490
490
|
<summary>
|
491
491
|
Gets the configuration file.
|
492
492
|
</summary>
|
493
|
-
<param name="
|
493
|
+
<param name="fileName">i.e. log4net.config</param>
|
494
494
|
<returns></returns>
|
495
495
|
</member>
|
496
496
|
<member name="T:Castle.Core.Logging.ConsoleFactory">
|
@@ -525,6 +525,11 @@
|
|
525
525
|
plus the 'log' extension.
|
526
526
|
</summary>
|
527
527
|
</member>
|
528
|
+
<member name="T:Castle.Core.Logging.TraceLoggerFactory">
|
529
|
+
<summary>
|
530
|
+
Used to create the TraceLogger implementation of ILogger interface. See <see cref="T:Castle.Core.Logging.TraceLogger"/>.
|
531
|
+
</summary>
|
532
|
+
</member>
|
528
533
|
<member name="T:Castle.Core.Logging.ConsoleLogger">
|
529
534
|
<summary>
|
530
535
|
The Logger sending everything to the standard output streams.
|
@@ -834,7 +839,7 @@
|
|
834
839
|
Create a new child logger.
|
835
840
|
The name of the child logger is [current-loggers-name].[passed-in-name]
|
836
841
|
</summary>
|
837
|
-
<param name="
|
842
|
+
<param name="loggerName">The Subname of this logger.</param>
|
838
843
|
<returns>The New ILogger instance.</returns>
|
839
844
|
<exception cref="T:System.ArgumentException">If the name has an empty element name.</exception>
|
840
845
|
</member>
|
@@ -1170,8 +1175,8 @@
|
|
1170
1175
|
Implementors output the log content by implementing this method only.
|
1171
1176
|
Note that exception can be null
|
1172
1177
|
</summary>
|
1173
|
-
<param name="
|
1174
|
-
<param name="
|
1178
|
+
<param name="loggerLevel"></param>
|
1179
|
+
<param name="loggerName"></param>
|
1175
1180
|
<param name="message"></param>
|
1176
1181
|
<param name="exception"></param>
|
1177
1182
|
</member>
|
@@ -1255,8 +1260,8 @@
|
|
1255
1260
|
<summary>
|
1256
1261
|
A Common method to log.
|
1257
1262
|
</summary>
|
1258
|
-
<param name="
|
1259
|
-
<param name="
|
1263
|
+
<param name="loggerLevel">The level of logging</param>
|
1264
|
+
<param name="loggerName">The name of the logger</param>
|
1260
1265
|
<param name="message">The Message</param>
|
1261
1266
|
<param name="exception">The Exception</param>
|
1262
1267
|
</member>
|
@@ -1265,7 +1270,7 @@
|
|
1265
1270
|
Returns a new <c>ConsoleLogger</c> with the name
|
1266
1271
|
added after this loggers name, with a dot in between.
|
1267
1272
|
</summary>
|
1268
|
-
<param name="
|
1273
|
+
<param name="loggerName">The added hierarchical name.</param>
|
1269
1274
|
<returns>A new <c>ConsoleLogger</c>.</returns>
|
1270
1275
|
</member>
|
1271
1276
|
<member name="T:Castle.Core.Logging.DiagnosticsLogger">
|
@@ -1612,7 +1617,7 @@
|
|
1612
1617
|
<summary>
|
1613
1618
|
Returns this <c>NullLogger</c>.
|
1614
1619
|
</summary>
|
1615
|
-
<param name="
|
1620
|
+
<param name="loggerName">Ignored</param>
|
1616
1621
|
<returns>This ILogger instance.</returns>
|
1617
1622
|
</member>
|
1618
1623
|
<member name="P:Castle.Core.Logging.NullLogger.IsDebugEnabled">
|
@@ -1761,6 +1766,46 @@
|
|
1761
1766
|
<param name="name">The name of the log.</param>
|
1762
1767
|
<param name="writer">The <c>StreamWriter</c> the log will write to.</param>
|
1763
1768
|
</member>
|
1769
|
+
<member name="T:Castle.Core.Logging.TraceLogger">
|
1770
|
+
<summary>
|
1771
|
+
The TraceLogger sends all logging to the System.Diagnostics.TraceSource
|
1772
|
+
built into the .net framework.
|
1773
|
+
</summary>
|
1774
|
+
<remarks>
|
1775
|
+
Logging can be configured in the system.diagnostics configuration
|
1776
|
+
section.
|
1777
|
+
|
1778
|
+
If logger doesn't find a source name with a full match it will
|
1779
|
+
use source names which match the namespace partially. For example you can
|
1780
|
+
configure from all castle components by adding a source name with the
|
1781
|
+
name "Castle".
|
1782
|
+
|
1783
|
+
If no portion of the namespace matches the source named "Default" will
|
1784
|
+
be used.
|
1785
|
+
</remarks>
|
1786
|
+
</member>
|
1787
|
+
<member name="M:Castle.Core.Logging.TraceLogger.#ctor(System.String)">
|
1788
|
+
<summary>
|
1789
|
+
Build a new trace logger based on the named TraceSource
|
1790
|
+
</summary>
|
1791
|
+
<param name="name">The name used to locate the best TraceSource. In most cases comes from the using type's fullname.</param>
|
1792
|
+
</member>
|
1793
|
+
<member name="M:Castle.Core.Logging.TraceLogger.#ctor(System.String,Castle.Core.Logging.LoggerLevel)">
|
1794
|
+
<summary>
|
1795
|
+
Build a new trace logger based on the named TraceSource
|
1796
|
+
</summary>
|
1797
|
+
<param name="name">The name used to locate the best TraceSource. In most cases comes from the using type's fullname.</param>
|
1798
|
+
<param name="level">The default logging level at which this source should write messages. In almost all cases this
|
1799
|
+
default value will be overridden in the config file. </param>
|
1800
|
+
</member>
|
1801
|
+
<member name="M:Castle.Core.Logging.TraceLogger.CreateChildLogger(System.String)">
|
1802
|
+
<summary>
|
1803
|
+
Create a new child logger.
|
1804
|
+
The name of the child logger is [current-loggers-name].[passed-in-name]
|
1805
|
+
</summary>
|
1806
|
+
<param name="loggerName">The Subname of this logger.</param>
|
1807
|
+
<returns>The New ILogger instance.</returns>
|
1808
|
+
</member>
|
1764
1809
|
<member name="T:Castle.Core.Logging.WebLogger">
|
1765
1810
|
<summary>
|
1766
1811
|
The WebLogger sends everything to the HttpContext.Trace
|
@@ -1791,14 +1836,14 @@
|
|
1791
1836
|
Creates a new WebLogger.
|
1792
1837
|
</summary>
|
1793
1838
|
<param name="name">The Log name.</param>
|
1794
|
-
<param name="
|
1839
|
+
<param name="loggerLevel">The Log level typecode.</param>
|
1795
1840
|
</member>
|
1796
1841
|
<member name="M:Castle.Core.Logging.WebLogger.Log(Castle.Core.Logging.LoggerLevel,System.String,System.String,System.Exception)">
|
1797
1842
|
<summary>
|
1798
1843
|
A Common method to log.
|
1799
1844
|
</summary>
|
1800
|
-
<param name="
|
1801
|
-
<param name="
|
1845
|
+
<param name="loggerLevel">The level of logging</param>
|
1846
|
+
<param name="loggerName">The Log name.</param>
|
1802
1847
|
<param name="message">The Message</param>
|
1803
1848
|
<param name="exception">The Exception</param>
|
1804
1849
|
</member>
|
@@ -1806,9 +1851,16 @@
|
|
1806
1851
|
<summary>
|
1807
1852
|
Just returns this logger (<c>WebLogger</c> is not hierarchical).
|
1808
1853
|
</summary>
|
1809
|
-
<param name="
|
1854
|
+
<param name="loggerName">Ignored</param>
|
1810
1855
|
<returns>This ILogger instance.</returns>
|
1811
1856
|
</member>
|
1857
|
+
<member name="M:Castle.Core.Logging.WebLogger.TryToGetTraceContext">
|
1858
|
+
<summary>
|
1859
|
+
Tries to get the current http context's trace context.
|
1860
|
+
</summary>
|
1861
|
+
<returns>The current http context's trace context or null if none is
|
1862
|
+
available</returns>
|
1863
|
+
</member>
|
1812
1864
|
<member name="T:Castle.Core.Logging.LoggerLevel">
|
1813
1865
|
<summary>
|
1814
1866
|
Supporting Logger levels.
|
@@ -1844,6 +1896,24 @@
|
|
1844
1896
|
Debug logging level
|
1845
1897
|
</summary>
|
1846
1898
|
</member>
|
1899
|
+
<member name="T:Castle.Core.Configuration.Xml.XmlConfigurationDeserializer">
|
1900
|
+
<summary>
|
1901
|
+
Pendent
|
1902
|
+
</summary>
|
1903
|
+
</member>
|
1904
|
+
<member name="M:Castle.Core.Configuration.Xml.XmlConfigurationDeserializer.Deserialize(System.Xml.XmlNode)">
|
1905
|
+
<summary>
|
1906
|
+
Deserializes the specified node into an abstract representation of configuration.
|
1907
|
+
</summary>
|
1908
|
+
<param name="node">The node.</param>
|
1909
|
+
<returns></returns>
|
1910
|
+
</member>
|
1911
|
+
<member name="M:Castle.Core.Configuration.Xml.XmlConfigurationDeserializer.GetConfigValue(System.String)">
|
1912
|
+
<summary>
|
1913
|
+
If a config value is an empty string we return null, this is to keep
|
1914
|
+
backward compability with old code
|
1915
|
+
</summary>
|
1916
|
+
</member>
|
1847
1917
|
<member name="T:Castle.Core.Configuration.AbstractConfiguration">
|
1848
1918
|
<summary>
|
1849
1919
|
This is an abstract <see cref="T:Castle.Core.Configuration.IConfiguration"/> implementation
|
@@ -1856,9 +1926,6 @@
|
|
1856
1926
|
</remarks>
|
1857
1927
|
</member>
|
1858
1928
|
<member name="T:Castle.Core.Configuration.IConfiguration">
|
1859
|
-
<summary>
|
1860
|
-
Summary description for IConfiguration.
|
1861
|
-
</summary>
|
1862
1929
|
<summary>
|
1863
1930
|
<see cref="T:Castle.Core.Configuration.IConfiguration"/> is a interface encapsulating a configuration node
|
1864
1931
|
used to retrieve configuration values.
|
@@ -1954,81 +2021,11 @@
|
|
1954
2021
|
Creates a new instance of <c>ConfigurationCollection</c>.
|
1955
2022
|
</summary>
|
1956
2023
|
</member>
|
1957
|
-
<member name="M:Castle.Core.Configuration.ConfigurationCollection.#ctor(Castle.Core.Configuration.
|
1958
|
-
<summary>
|
1959
|
-
Creates a new instance of <c>ConfigurationCollection</c>.
|
1960
|
-
</summary>
|
1961
|
-
</member>
|
1962
|
-
<member name="M:Castle.Core.Configuration.ConfigurationCollection.#ctor(Castle.Core.Configuration.IConfiguration[])">
|
2024
|
+
<member name="M:Castle.Core.Configuration.ConfigurationCollection.#ctor(System.Collections.Generic.IEnumerable{Castle.Core.Configuration.IConfiguration})">
|
1963
2025
|
<summary>
|
1964
2026
|
Creates a new instance of <c>ConfigurationCollection</c>.
|
1965
2027
|
</summary>
|
1966
2028
|
</member>
|
1967
|
-
<member name="M:Castle.Core.Configuration.ConfigurationCollection.Add(Castle.Core.Configuration.IConfiguration)">
|
1968
|
-
<summary>
|
1969
|
-
Adds an <see cref="T:Castle.Core.Configuration.IConfiguration"/>.
|
1970
|
-
</summary>
|
1971
|
-
<param name="value">The <see cref="T:Castle.Core.Configuration.IConfiguration"/> to add.</param>
|
1972
|
-
<returns>
|
1973
|
-
The index at which the new element was inserted.
|
1974
|
-
</returns>
|
1975
|
-
</member>
|
1976
|
-
<member name="M:Castle.Core.Configuration.ConfigurationCollection.AddRange(Castle.Core.Configuration.IConfiguration[])">
|
1977
|
-
<summary>
|
1978
|
-
Adds an array of <see cref="T:Castle.Core.Configuration.IConfiguration"/>.
|
1979
|
-
</summary>
|
1980
|
-
<param name="value">The Array of <see cref="T:Castle.Core.Configuration.IConfiguration"/> to add.</param>
|
1981
|
-
</member>
|
1982
|
-
<member name="M:Castle.Core.Configuration.ConfigurationCollection.AddRange(Castle.Core.Configuration.ConfigurationCollection)">
|
1983
|
-
<summary>
|
1984
|
-
Adds a <see cref="T:Castle.Core.Configuration.ConfigurationCollection"/>.
|
1985
|
-
</summary>
|
1986
|
-
<param name="value">The <see cref="T:Castle.Core.Configuration.ConfigurationCollection"/> to add.</param>
|
1987
|
-
</member>
|
1988
|
-
<member name="M:Castle.Core.Configuration.ConfigurationCollection.CopyTo(Castle.Core.Configuration.IConfiguration[],System.Int32)">
|
1989
|
-
<summary>
|
1990
|
-
Copies the elements to a one-dimensional <see cref="T:System.Array"/> instance at the specified index.
|
1991
|
-
</summary>
|
1992
|
-
<param name="array">
|
1993
|
-
The one-dimensional <see cref="T:System.Array"/> must have zero-based indexing.
|
1994
|
-
</param>
|
1995
|
-
<param name="index">The zero-based index in array at which copying begins.</param>
|
1996
|
-
</member>
|
1997
|
-
<member name="M:Castle.Core.Configuration.ConfigurationCollection.Contains(Castle.Core.Configuration.IConfiguration)">
|
1998
|
-
<summary>
|
1999
|
-
Gets a value indicating whether the <see cref="T:Castle.Core.Configuration.IConfiguration"/> contains
|
2000
|
-
in the collection.
|
2001
|
-
</summary>
|
2002
|
-
<param name="value">The <see cref="T:Castle.Core.Configuration.IConfiguration"/> to locate.</param>
|
2003
|
-
<returns>
|
2004
|
-
<see langword="true"/> if the <see cref="T:Castle.Core.Configuration.IConfiguration"/> is contained in the collection;
|
2005
|
-
otherwise, <see langword="false"/>.
|
2006
|
-
</returns>
|
2007
|
-
</member>
|
2008
|
-
<member name="M:Castle.Core.Configuration.ConfigurationCollection.Remove(Castle.Core.Configuration.IConfiguration)">
|
2009
|
-
<summary>
|
2010
|
-
Removes a specific <see cref="T:Castle.Core.Configuration.IConfiguration"/> from the
|
2011
|
-
collection.
|
2012
|
-
</summary>
|
2013
|
-
<param name="value">The <see cref="T:Castle.Core.Configuration.IConfiguration"/> to remove from the collection.</param>
|
2014
|
-
<exception cref="T:System.ArgumentException">
|
2015
|
-
<paramref name="value"/> is not found in the collection.
|
2016
|
-
</exception>
|
2017
|
-
</member>
|
2018
|
-
<member name="P:Castle.Core.Configuration.ConfigurationCollection.Item(System.Int32)">
|
2019
|
-
<summary>
|
2020
|
-
Represents the entry at the specified index of the <see cref="T:Castle.Core.Configuration.IConfiguration"/>.
|
2021
|
-
</summary>
|
2022
|
-
<param name="index">
|
2023
|
-
The zero-based index of the entry to locate in the collection.
|
2024
|
-
</param>
|
2025
|
-
<value>
|
2026
|
-
The entry at the specified index of the collection.
|
2027
|
-
</value>
|
2028
|
-
<exception cref="T:System.ArgumentOutOfRangeException">
|
2029
|
-
<paramref name="index"/> is outside the valid range of indexes for the collection.
|
2030
|
-
</exception>
|
2031
|
-
</member>
|
2032
2029
|
<member name="T:Castle.Core.Configuration.MutableConfiguration">
|
2033
2030
|
<summary>
|
2034
2031
|
Summary description for MutableConfiguration.
|
@@ -2040,6 +2037,14 @@
|
|
2040
2037
|
</summary>
|
2041
2038
|
<param name="name">The name.</param>
|
2042
2039
|
</member>
|
2040
|
+
<member name="P:Castle.Core.Configuration.MutableConfiguration.Value">
|
2041
|
+
<summary>
|
2042
|
+
Gets the value of <see cref="T:Castle.Core.Configuration.IConfiguration"/>.
|
2043
|
+
</summary>
|
2044
|
+
<value>
|
2045
|
+
The Value of the <see cref="T:Castle.Core.Configuration.IConfiguration"/>.
|
2046
|
+
</value>
|
2047
|
+
</member>
|
2043
2048
|
<member name="T:Castle.Core.LifestyleType">
|
2044
2049
|
<summary>
|
2045
2050
|
Enumeration used to mark the component's lifestyle.
|
@@ -2135,11 +2140,26 @@
|
|
2135
2140
|
<member name="F:Castle.Core.ComponentModel.interceptors">
|
2136
2141
|
<summary>Interceptors associated</summary>
|
2137
2142
|
</member>
|
2143
|
+
<member name="F:Castle.Core.ComponentModel.customDependencies">
|
2144
|
+
<summary>/// Custom dependencies/// </summary>
|
2145
|
+
</member>
|
2138
2146
|
<member name="M:Castle.Core.ComponentModel.#ctor(System.String,System.Type,System.Type)">
|
2139
2147
|
<summary>
|
2140
2148
|
Constructs a ComponentModel
|
2141
2149
|
</summary>
|
2142
2150
|
</member>
|
2151
|
+
<member name="M:Castle.Core.ComponentModel.Requires(System.Predicate{Castle.Core.PropertySet}[])">
|
2152
|
+
<summary>
|
2153
|
+
Requires the selected property dependencies.
|
2154
|
+
</summary>
|
2155
|
+
<param name="selectors">The property selector.</param>
|
2156
|
+
</member>
|
2157
|
+
<member name="M:Castle.Core.ComponentModel.Requires``1">
|
2158
|
+
<summary>
|
2159
|
+
Requires the property dependencies of type <typeparamref name="D"/>.
|
2160
|
+
</summary>
|
2161
|
+
<typeparam name="D">The dependency type.</typeparam>
|
2162
|
+
</member>
|
2143
2163
|
<member name="P:Castle.Core.ComponentModel.Name">
|
2144
2164
|
<summary>
|
2145
2165
|
Sets or returns the component key
|
@@ -2240,6 +2260,12 @@
|
|
2240
2260
|
of fact the handler) can check them
|
2241
2261
|
</summary>
|
2242
2262
|
</member>
|
2263
|
+
<member name="P:Castle.Core.ComponentModel.CustomDependencies">
|
2264
|
+
<summary>
|
2265
|
+
Gets the custom dependencies.
|
2266
|
+
</summary>
|
2267
|
+
<value>The custom dependencies.</value>
|
2268
|
+
</member>
|
2243
2269
|
<member name="T:Castle.Core.ConstructorCandidate">
|
2244
2270
|
<summary>
|
2245
2271
|
Represents a constructor of the component
|
@@ -2270,17 +2296,6 @@
|
|
2270
2296
|
Collection of <see cref="T:Castle.Core.ConstructorCandidate"/>
|
2271
2297
|
</summary>
|
2272
2298
|
</member>
|
2273
|
-
<member name="M:Castle.Core.ConstructorCandidateCollection.Add(Castle.Core.ConstructorCandidate)">
|
2274
|
-
<summary>
|
2275
|
-
Adds the specified candidate.
|
2276
|
-
</summary>
|
2277
|
-
<param name="candidate">The candidate.</param>
|
2278
|
-
</member>
|
2279
|
-
<member name="M:Castle.Core.ConstructorCandidateCollection.Clear">
|
2280
|
-
<summary>
|
2281
|
-
Clears this instance.
|
2282
|
-
</summary>
|
2283
|
-
</member>
|
2284
2299
|
<member name="P:Castle.Core.ConstructorCandidateCollection.FewerArgumentsCandidate">
|
2285
2300
|
<summary>
|
2286
2301
|
Gets the fewer arguments candidate.
|
@@ -2365,60 +2380,49 @@
|
|
2365
2380
|
Initializes a new instance of the <see cref="T:Castle.Core.DependencyModelCollection"/> class.
|
2366
2381
|
</summary>
|
2367
2382
|
</member>
|
2368
|
-
<member name="M:Castle.Core.DependencyModelCollection.#ctor(Castle.Core.
|
2383
|
+
<member name="M:Castle.Core.DependencyModelCollection.#ctor(System.Collections.Generic.IEnumerable{Castle.Core.DependencyModel})">
|
2369
2384
|
<summary>
|
2370
2385
|
Initializes a new instance of the <see cref="T:Castle.Core.DependencyModelCollection"/> class.
|
2371
2386
|
</summary>
|
2372
2387
|
<param name="dependencies">The dependencies.</param>
|
2373
2388
|
</member>
|
2374
|
-
<member name="
|
2375
|
-
<summary>
|
2376
|
-
Initializes a new instance of the <see cref="T:Castle.Core.DependencyModelCollection"/> class.
|
2377
|
-
</summary>
|
2378
|
-
<param name="dependencies">The dependencies.</param>
|
2379
|
-
</member>
|
2380
|
-
<member name="M:Castle.Core.DependencyModelCollection.Add(Castle.Core.DependencyModel)">
|
2381
|
-
<summary>
|
2382
|
-
Adds the specified model.
|
2383
|
-
</summary>
|
2384
|
-
<param name="model">The model.</param>
|
2385
|
-
</member>
|
2386
|
-
<member name="M:Castle.Core.DependencyModelCollection.Remove(Castle.Core.DependencyModel)">
|
2389
|
+
<member name="T:Castle.Core.InterceptorReference">
|
2387
2390
|
<summary>
|
2388
|
-
|
2391
|
+
Represents an reference to a Interceptor component.
|
2389
2392
|
</summary>
|
2390
|
-
<param name="model">The model.</param>
|
2391
2393
|
</member>
|
2392
|
-
<member name="M:Castle.Core.
|
2394
|
+
<member name="M:Castle.Core.InterceptorReference.#ctor(System.String)">
|
2393
2395
|
<summary>
|
2394
|
-
|
2396
|
+
Initializes a new instance of the <see cref="T:Castle.Core.InterceptorReference"/> class.
|
2395
2397
|
</summary>
|
2398
|
+
<param name="componentKey">The component key.</param>
|
2396
2399
|
</member>
|
2397
|
-
<member name="M:Castle.Core.
|
2400
|
+
<member name="M:Castle.Core.InterceptorReference.#ctor(System.Type)">
|
2398
2401
|
<summary>
|
2399
|
-
|
2402
|
+
Initializes a new instance of the <see cref="T:Castle.Core.InterceptorReference"/> class.
|
2400
2403
|
</summary>
|
2401
|
-
<param name="
|
2402
|
-
<returns>
|
2403
|
-
<c>true</c> if the collection contains the specified model; otherwise, <c>false</c>.
|
2404
|
-
</returns>
|
2404
|
+
<param name="serviceType">Type of the service.</param>
|
2405
2405
|
</member>
|
2406
|
-
<member name="
|
2406
|
+
<member name="M:Castle.Core.InterceptorReference.ForKey(System.String)">
|
2407
2407
|
<summary>
|
2408
|
-
|
2408
|
+
Gets an <see cref="T:Castle.Core.InterceptorReference"/> for the component key.
|
2409
2409
|
</summary>
|
2410
|
+
<param name="key">The component key.</param>
|
2411
|
+
<returns>The <see cref="T:Castle.Core.InterceptorReference"/></returns>
|
2410
2412
|
</member>
|
2411
|
-
<member name="M:Castle.Core.InterceptorReference
|
2413
|
+
<member name="M:Castle.Core.InterceptorReference.ForType(System.Type)">
|
2412
2414
|
<summary>
|
2413
|
-
|
2415
|
+
Gets an <see cref="T:Castle.Core.InterceptorReference"/> for the service.
|
2414
2416
|
</summary>
|
2415
|
-
<param name="
|
2417
|
+
<param name="service">The service.</param>
|
2418
|
+
<returns>The <see cref="T:Castle.Core.InterceptorReference"/></returns>
|
2416
2419
|
</member>
|
2417
|
-
<member name="M:Castle.Core.InterceptorReference
|
2420
|
+
<member name="M:Castle.Core.InterceptorReference.ForType``1">
|
2418
2421
|
<summary>
|
2419
|
-
|
2422
|
+
Gets an <see cref="T:Castle.Core.InterceptorReference"/> for the service.
|
2420
2423
|
</summary>
|
2421
|
-
<
|
2424
|
+
<typeparam name="T">The service type.</typeparam>
|
2425
|
+
<returns>The <see cref="T:Castle.Core.InterceptorReference"/></returns>
|
2422
2426
|
</member>
|
2423
2427
|
<member name="P:Castle.Core.InterceptorReference.ServiceType">
|
2424
2428
|
<summary>
|
@@ -2445,28 +2449,28 @@
|
|
2445
2449
|
</member>
|
2446
2450
|
<member name="M:Castle.Core.InterceptorReferenceCollection.Add(Castle.Core.InterceptorReference)">
|
2447
2451
|
<summary>
|
2448
|
-
Adds the specified
|
2452
|
+
Adds the specified item.
|
2449
2453
|
</summary>
|
2450
|
-
<param name="
|
2454
|
+
<param name="item">The interceptor.</param>
|
2451
2455
|
</member>
|
2452
2456
|
<member name="M:Castle.Core.InterceptorReferenceCollection.AddFirst(Castle.Core.InterceptorReference)">
|
2453
2457
|
<summary>
|
2454
|
-
Adds the
|
2458
|
+
Adds the specified interceptor as the first.
|
2455
2459
|
</summary>
|
2456
|
-
<param name="
|
2460
|
+
<param name="item">The interceptor.</param>
|
2457
2461
|
</member>
|
2458
2462
|
<member name="M:Castle.Core.InterceptorReferenceCollection.AddLast(Castle.Core.InterceptorReference)">
|
2459
2463
|
<summary>
|
2460
|
-
Adds the
|
2464
|
+
Adds the specified interceptor as the last.
|
2461
2465
|
</summary>
|
2462
|
-
<param name="
|
2466
|
+
<param name="item">The interceptor.</param>
|
2463
2467
|
</member>
|
2464
2468
|
<member name="M:Castle.Core.InterceptorReferenceCollection.Insert(System.Int32,Castle.Core.InterceptorReference)">
|
2465
2469
|
<summary>
|
2466
2470
|
Inserts the specified interceptor at the specified index.
|
2467
2471
|
</summary>
|
2468
2472
|
<param name="index">The index.</param>
|
2469
|
-
<param name="
|
2473
|
+
<param name="item">The interceptor.</param>
|
2470
2474
|
</member>
|
2471
2475
|
<member name="M:Castle.Core.InterceptorReferenceCollection.CopyTo(System.Array,System.Int32)">
|
2472
2476
|
<summary>
|
@@ -2499,6 +2503,12 @@
|
|
2499
2503
|
that can be used to iterate through the collection.
|
2500
2504
|
</returns>
|
2501
2505
|
</member>
|
2506
|
+
<member name="M:Castle.Core.InterceptorReferenceCollection.AddIfNotInCollection(Castle.Core.InterceptorReference)">
|
2507
|
+
<summary>
|
2508
|
+
Adds the interceptor to the end of the interceptors list if it does not exist already.
|
2509
|
+
</summary>
|
2510
|
+
<param name="interceptorReference">The interceptor reference.</param>
|
2511
|
+
</member>
|
2502
2512
|
<member name="P:Castle.Core.InterceptorReferenceCollection.HasInterceptors">
|
2503
2513
|
<summary>
|
2504
2514
|
Gets a value indicating whether this instance has interceptors.
|
@@ -2558,6 +2568,13 @@
|
|
2558
2568
|
<param name="type"></param>
|
2559
2569
|
<param name="stepImplementation"></param>
|
2560
2570
|
</member>
|
2571
|
+
<member name="M:Castle.Core.LifecycleStepCollection.AddFirst(Castle.Core.LifecycleStepType,System.Object)">
|
2572
|
+
<summary>
|
2573
|
+
Adds a step as the first step to execute for the commission or decomission phase.
|
2574
|
+
</summary>
|
2575
|
+
<param name="type"></param>
|
2576
|
+
<param name="stepImplementation"></param>
|
2577
|
+
</member>
|
2561
2578
|
<member name="M:Castle.Core.LifecycleStepCollection.CopyTo(System.Array,System.Int32)">
|
2562
2579
|
<summary>
|
2563
2580
|
Copies the elements of
|
@@ -2650,12 +2667,6 @@
|
|
2650
2667
|
Collection of <see cref="T:Castle.Core.MethodMetaModel"/>
|
2651
2668
|
</summary>
|
2652
2669
|
</member>
|
2653
|
-
<member name="M:Castle.Core.MethodMetaModelCollection.Add(Castle.Core.MethodMetaModel)">
|
2654
|
-
<summary>
|
2655
|
-
Adds the specified model.
|
2656
|
-
</summary>
|
2657
|
-
<param name="model">The model.</param>
|
2658
|
-
</member>
|
2659
2670
|
<member name="P:Castle.Core.MethodMetaModelCollection.MethodInfo2Model">
|
2660
2671
|
<summary>
|
2661
2672
|
Gets the method info2 model.
|
@@ -2868,17 +2879,6 @@
|
|
2868
2879
|
Collection of <see cref="T:Castle.Core.PropertySet"/>
|
2869
2880
|
</summary>
|
2870
2881
|
</member>
|
2871
|
-
<member name="M:Castle.Core.PropertySetCollection.Add(Castle.Core.PropertySet)">
|
2872
|
-
<summary>
|
2873
|
-
Adds the specified property.
|
2874
|
-
</summary>
|
2875
|
-
<param name="property">The property.</param>
|
2876
|
-
</member>
|
2877
|
-
<member name="M:Castle.Core.PropertySetCollection.Clear">
|
2878
|
-
<summary>
|
2879
|
-
Clears this instance.
|
2880
|
-
</summary>
|
2881
|
-
</member>
|
2882
2882
|
<member name="M:Castle.Core.PropertySetCollection.FindByPropertyInfo(System.Reflection.PropertyInfo)">
|
2883
2883
|
<summary>
|
2884
2884
|
Finds a PropertySet the by PropertyInfo.
|
@@ -2934,10 +2934,10 @@
|
|
2934
2934
|
|
2935
2935
|
</summary>
|
2936
2936
|
</member>
|
2937
|
-
<member name="
|
2937
|
+
<member name="F:Castle.Core.Resource.AbstractStreamResource.createStream">
|
2938
2938
|
<summary>
|
2939
|
-
|
2940
|
-
|
2939
|
+
This returns a new stream instance each time it is called.
|
2940
|
+
It is the responsability of the caller to dispose of this stream
|
2941
2941
|
</summary>
|
2942
2942
|
</member>
|
2943
2943
|
<member name="T:Castle.Core.Resource.AssemblyResourceFactory">
|
@@ -3045,5 +3045,153 @@
|
|
3045
3045
|
<param name="first"></param>
|
3046
3046
|
<param name="second"></param>
|
3047
3047
|
</member>
|
3048
|
+
<member name="T:Castle.Core.ProxyServices">
|
3049
|
+
<summary>
|
3050
|
+
List of utility methods related to dynamic proxy operations
|
3051
|
+
</summary>
|
3052
|
+
</member>
|
3053
|
+
<member name="M:Castle.Core.ProxyServices.IsDynamicProxy(System.Type)">
|
3054
|
+
<summary>
|
3055
|
+
Determines whether the specified type is a proxy generated by
|
3056
|
+
DynamicProxy (1 or 2).
|
3057
|
+
</summary>
|
3058
|
+
<param name="type">The type.</param>
|
3059
|
+
<returns>
|
3060
|
+
<c>true</c> if it is a proxy; otherwise, <c>false</c>.
|
3061
|
+
</returns>
|
3062
|
+
</member>
|
3063
|
+
<member name="T:Castle.Core.ReflectionBasedDictionaryAdapter">
|
3064
|
+
<summary>
|
3065
|
+
Pendent
|
3066
|
+
</summary>
|
3067
|
+
</member>
|
3068
|
+
<member name="M:Castle.Core.ReflectionBasedDictionaryAdapter.#ctor(System.Object)">
|
3069
|
+
<summary>
|
3070
|
+
Initializes a new instance of the <see cref="T:Castle.Core.ReflectionBasedDictionaryAdapter"/> class.
|
3071
|
+
</summary>
|
3072
|
+
<param name="target">The target.</param>
|
3073
|
+
</member>
|
3074
|
+
<member name="M:Castle.Core.ReflectionBasedDictionaryAdapter.Contains(System.Object)">
|
3075
|
+
<summary>
|
3076
|
+
Determines whether the <see cref="T:System.Collections.IDictionary"/> object contains an element with the specified key.
|
3077
|
+
</summary>
|
3078
|
+
<param name="key">The key to locate in the <see cref="T:System.Collections.IDictionary"/> object.</param>
|
3079
|
+
<returns>
|
3080
|
+
true if the <see cref="T:System.Collections.IDictionary"/> contains an element with the key; otherwise, false.
|
3081
|
+
</returns>
|
3082
|
+
<exception cref="T:System.ArgumentNullException">
|
3083
|
+
<paramref name="key"/> is null. </exception>
|
3084
|
+
</member>
|
3085
|
+
<member name="M:Castle.Core.ReflectionBasedDictionaryAdapter.Add(System.Object,System.Object)">
|
3086
|
+
<summary>
|
3087
|
+
Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary"/> object.
|
3088
|
+
</summary>
|
3089
|
+
<param name="key">The <see cref="T:System.Object"/> to use as the key of the element to add.</param>
|
3090
|
+
<param name="value">The <see cref="T:System.Object"/> to use as the value of the element to add.</param>
|
3091
|
+
<exception cref="T:System.ArgumentNullException">
|
3092
|
+
<paramref name="key"/> is null. </exception>
|
3093
|
+
<exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.IDictionary"/> object. </exception>
|
3094
|
+
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IDictionary"/> is read-only.-or- The <see cref="T:System.Collections.IDictionary"/> has a fixed size. </exception>
|
3095
|
+
</member>
|
3096
|
+
<member name="M:Castle.Core.ReflectionBasedDictionaryAdapter.Clear">
|
3097
|
+
<summary>
|
3098
|
+
Removes all elements from the <see cref="T:System.Collections.IDictionary"/> object.
|
3099
|
+
</summary>
|
3100
|
+
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IDictionary"/> object is read-only. </exception>
|
3101
|
+
</member>
|
3102
|
+
<member name="M:Castle.Core.ReflectionBasedDictionaryAdapter.System#Collections#IDictionary#GetEnumerator">
|
3103
|
+
<summary>
|
3104
|
+
Returns an <see cref="T:System.Collections.IDictionaryEnumerator"/> object for the <see cref="T:System.Collections.IDictionary"/> object.
|
3105
|
+
</summary>
|
3106
|
+
<returns>
|
3107
|
+
An <see cref="T:System.Collections.IDictionaryEnumerator"/> object for the <see cref="T:System.Collections.IDictionary"/> object.
|
3108
|
+
</returns>
|
3109
|
+
</member>
|
3110
|
+
<member name="M:Castle.Core.ReflectionBasedDictionaryAdapter.Remove(System.Object)">
|
3111
|
+
<summary>
|
3112
|
+
Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary"/> object.
|
3113
|
+
</summary>
|
3114
|
+
<param name="key">The key of the element to remove.</param>
|
3115
|
+
<exception cref="T:System.ArgumentNullException">
|
3116
|
+
<paramref name="key"/> is null. </exception>
|
3117
|
+
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IDictionary"/> object is read-only.-or- The <see cref="T:System.Collections.IDictionary"/> has a fixed size. </exception>
|
3118
|
+
</member>
|
3119
|
+
<member name="M:Castle.Core.ReflectionBasedDictionaryAdapter.CopyTo(System.Array,System.Int32)">
|
3120
|
+
<summary>
|
3121
|
+
Copies the elements of the <see cref="T:System.Collections.ICollection"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
|
3122
|
+
</summary>
|
3123
|
+
<param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param>
|
3124
|
+
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
|
3125
|
+
<exception cref="T:System.ArgumentNullException">
|
3126
|
+
<paramref name="array"/> is null. </exception>
|
3127
|
+
<exception cref="T:System.ArgumentOutOfRangeException">
|
3128
|
+
<paramref name="index"/> is less than zero. </exception>
|
3129
|
+
<exception cref="T:System.ArgumentException">
|
3130
|
+
<paramref name="array"/> is multidimensional.-or- <paramref name="index"/> is equal to or greater than the length of <paramref name="array"/>.-or- The number of elements in the source <see cref="T:System.Collections.ICollection"/> is greater than the available space from <paramref name="index"/> to the end of the destination <paramref name="array"/>. </exception>
|
3131
|
+
<exception cref="T:System.ArgumentException">The type of the source <see cref="T:System.Collections.ICollection"/> cannot be cast automatically to the type of the destination <paramref name="array"/>. </exception>
|
3132
|
+
</member>
|
3133
|
+
<member name="M:Castle.Core.ReflectionBasedDictionaryAdapter.GetEnumerator">
|
3134
|
+
<summary>
|
3135
|
+
Returns an enumerator that iterates through a collection.
|
3136
|
+
</summary>
|
3137
|
+
<returns>
|
3138
|
+
An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
|
3139
|
+
</returns>
|
3140
|
+
</member>
|
3141
|
+
<member name="P:Castle.Core.ReflectionBasedDictionaryAdapter.Item(System.Object)">
|
3142
|
+
<summary>
|
3143
|
+
Gets or sets the <see cref="T:System.Object"/> with the specified key.
|
3144
|
+
</summary>
|
3145
|
+
<value></value>
|
3146
|
+
</member>
|
3147
|
+
<member name="P:Castle.Core.ReflectionBasedDictionaryAdapter.Keys">
|
3148
|
+
<summary>
|
3149
|
+
Gets an <see cref="T:System.Collections.ICollection"/> object containing the keys of the <see cref="T:System.Collections.IDictionary"/> object.
|
3150
|
+
</summary>
|
3151
|
+
<value></value>
|
3152
|
+
<returns>An <see cref="T:System.Collections.ICollection"/> object containing the keys of the <see cref="T:System.Collections.IDictionary"/> object.</returns>
|
3153
|
+
</member>
|
3154
|
+
<member name="P:Castle.Core.ReflectionBasedDictionaryAdapter.Values">
|
3155
|
+
<summary>
|
3156
|
+
Gets an <see cref="T:System.Collections.ICollection"/> object containing the values in the <see cref="T:System.Collections.IDictionary"/> object.
|
3157
|
+
</summary>
|
3158
|
+
<value></value>
|
3159
|
+
<returns>An <see cref="T:System.Collections.ICollection"/> object containing the values in the <see cref="T:System.Collections.IDictionary"/> object.</returns>
|
3160
|
+
</member>
|
3161
|
+
<member name="P:Castle.Core.ReflectionBasedDictionaryAdapter.IsReadOnly">
|
3162
|
+
<summary>
|
3163
|
+
Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"/> object is read-only.
|
3164
|
+
</summary>
|
3165
|
+
<value></value>
|
3166
|
+
<returns>true if the <see cref="T:System.Collections.IDictionary"/> object is read-only; otherwise, false.</returns>
|
3167
|
+
</member>
|
3168
|
+
<member name="P:Castle.Core.ReflectionBasedDictionaryAdapter.IsFixedSize">
|
3169
|
+
<summary>
|
3170
|
+
Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"/> object has a fixed size.
|
3171
|
+
</summary>
|
3172
|
+
<value></value>
|
3173
|
+
<returns>true if the <see cref="T:System.Collections.IDictionary"/> object has a fixed size; otherwise, false.</returns>
|
3174
|
+
</member>
|
3175
|
+
<member name="P:Castle.Core.ReflectionBasedDictionaryAdapter.Count">
|
3176
|
+
<summary>
|
3177
|
+
Gets the number of elements contained in the <see cref="T:System.Collections.ICollection"/>.
|
3178
|
+
</summary>
|
3179
|
+
<value></value>
|
3180
|
+
<returns>The number of elements contained in the <see cref="T:System.Collections.ICollection"/>.</returns>
|
3181
|
+
</member>
|
3182
|
+
<member name="P:Castle.Core.ReflectionBasedDictionaryAdapter.SyncRoot">
|
3183
|
+
<summary>
|
3184
|
+
Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"/>.
|
3185
|
+
</summary>
|
3186
|
+
<value></value>
|
3187
|
+
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"/>.</returns>
|
3188
|
+
</member>
|
3189
|
+
<member name="P:Castle.Core.ReflectionBasedDictionaryAdapter.IsSynchronized">
|
3190
|
+
<summary>
|
3191
|
+
Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"/> is synchronized (thread safe).
|
3192
|
+
</summary>
|
3193
|
+
<value></value>
|
3194
|
+
<returns>true if access to the <see cref="T:System.Collections.ICollection"/> is synchronized (thread safe); otherwise, false.</returns>
|
3195
|
+
</member>
|
3048
3196
|
</members>
|
3049
3197
|
</doc>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: castle.core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 87
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
|
+
- 1
|
8
9
|
- 0
|
9
|
-
- 3
|
10
10
|
- 0
|
11
|
-
version: 1.0.
|
11
|
+
version: 1.1.0.0
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Jonathon Rossi
|