mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Updated jQuery/Ninject/Unity using nuget
This commit is contained in:
parent
1399ff15f2
commit
8eb04d9de7
74 changed files with 46712 additions and 5680 deletions
BIN
packages/CommonServiceLocator.1.0/CommonServiceLocator.1.0.nupkg
vendored
Normal file
BIN
packages/CommonServiceLocator.1.0/CommonServiceLocator.1.0.nupkg
vendored
Normal file
Binary file not shown.
280
packages/CommonServiceLocator.1.0/lib/NET35/Microsoft.Practices.ServiceLocation.XML
vendored
Normal file
280
packages/CommonServiceLocator.1.0/lib/NET35/Microsoft.Practices.ServiceLocation.XML
vendored
Normal file
|
@ -0,0 +1,280 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Practices.ServiceLocation</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.ActivationException">
|
||||
<summary>
|
||||
The standard exception thrown when a ServiceLocator has an error in resolving an object.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Exception" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Exception" /> class with a specified error message.
|
||||
</summary>
|
||||
<param name="message">
|
||||
The message that describes the error.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor(System.String,System.Exception)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Exception" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.
|
||||
</summary>
|
||||
<param name="message">
|
||||
The error message that explains the reason for the exception.
|
||||
</param>
|
||||
<param name="innerException">
|
||||
The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Exception" /> class with serialized data.
|
||||
</summary>
|
||||
<param name="info">
|
||||
The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.
|
||||
</param>
|
||||
<param name="context">
|
||||
The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.
|
||||
</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
The <paramref name="info" /> parameter is null.
|
||||
</exception>
|
||||
<exception cref="T:System.Runtime.Serialization.SerializationException">
|
||||
The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0).
|
||||
</exception>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.IServiceLocator">
|
||||
<summary>
|
||||
The generic Service Locator interface. This interface is used
|
||||
to retrieve services (instances identified by type and optional
|
||||
name) from a container.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance(System.Type)">
|
||||
<summary>
|
||||
Get an instance of the given <paramref name="serviceType"/>.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance(System.Type,System.String)">
|
||||
<summary>
|
||||
Get an instance of the given named <paramref name="serviceType"/>.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<param name="key">Name the object was registered with.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetAllInstances(System.Type)">
|
||||
<summary>
|
||||
Get all instances of the given <paramref name="serviceType"/> currently
|
||||
registered in the container.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>A sequence of instances of the requested <paramref name="serviceType"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance``1">
|
||||
<summary>
|
||||
Get an instance of the given <typeparamref name="TService"/>.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance``1(System.String)">
|
||||
<summary>
|
||||
Get an instance of the given named <typeparamref name="TService"/>.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<param name="key">Name the object was registered with.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetAllInstances``1">
|
||||
<summary>
|
||||
Get all instances of the given <typeparamref name="TService"/> currently
|
||||
registered in the container.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>A sequence of instances of the requested <typeparamref name="TService"/>.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.Properties.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ActivateAllExceptionMessage">
|
||||
<summary>
|
||||
Looks up a localized string similar to Activation error occured while trying to get all instances of type {0}.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ActivationExceptionMessage">
|
||||
<summary>
|
||||
Looks up a localized string similar to Activation error occured while trying to get instance of type {0}, key "{1}".
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.ServiceLocator">
|
||||
<summary>
|
||||
This class provides the ambient container for this application. If your
|
||||
framework defines such an ambient container, use ServiceLocator.Current
|
||||
to get it.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocator.SetLocatorProvider(Microsoft.Practices.ServiceLocation.ServiceLocatorProvider)">
|
||||
<summary>
|
||||
Set the delegate that is used to retrieve the current container.
|
||||
</summary>
|
||||
<param name="newProvider">Delegate that, when called, will return
|
||||
the current ambient container.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.ServiceLocator.Current">
|
||||
<summary>
|
||||
The current ambient container.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase">
|
||||
<summary>
|
||||
This class is a helper that provides a default implementation
|
||||
for most of the methods of <see cref="T:Microsoft.Practices.ServiceLocation.IServiceLocator"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetService(System.Type)">
|
||||
<summary>
|
||||
Implementation of <see cref="M:System.IServiceProvider.GetService(System.Type)"/>.
|
||||
</summary>
|
||||
<param name="serviceType">The requested service.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error in resolving the service instance.</exception>
|
||||
<returns>The requested object.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(System.Type)">
|
||||
<summary>
|
||||
Get an instance of the given <paramref name="serviceType"/>.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(System.Type,System.String)">
|
||||
<summary>
|
||||
Get an instance of the given named <paramref name="serviceType"/>.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<param name="key">Name the object was registered with.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetAllInstances(System.Type)">
|
||||
<summary>
|
||||
Get all instances of the given <paramref name="serviceType"/> currently
|
||||
registered in the container.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>A sequence of instances of the requested <paramref name="serviceType"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance``1">
|
||||
<summary>
|
||||
Get an instance of the given <typeparamref name="TService"/>.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance``1(System.String)">
|
||||
<summary>
|
||||
Get an instance of the given named <typeparamref name="TService"/>.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<param name="key">Name the object was registered with.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetAllInstances``1">
|
||||
<summary>
|
||||
Get all instances of the given <typeparamref name="TService"/> currently
|
||||
registered in the container.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>A sequence of instances of the requested <typeparamref name="TService"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.DoGetInstance(System.Type,System.String)">
|
||||
<summary>
|
||||
When implemented by inheriting classes, this method will do the actual work of resolving
|
||||
the requested service instance.
|
||||
</summary>
|
||||
<param name="serviceType">Type of instance requested.</param>
|
||||
<param name="key">Name of registered service you want. May be null.</param>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.DoGetAllInstances(System.Type)">
|
||||
<summary>
|
||||
When implemented by inheriting classes, this method will do the actual work of
|
||||
resolving all the requested service instances.
|
||||
</summary>
|
||||
<param name="serviceType">Type of service requested.</param>
|
||||
<returns>Sequence of service instance objects.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.FormatActivationExceptionMessage(System.Exception,System.Type,System.String)">
|
||||
<summary>
|
||||
Format the exception message for use in an <see cref="T:Microsoft.Practices.ServiceLocation.ActivationException"/>
|
||||
that occurs while resolving a single service.
|
||||
</summary>
|
||||
<param name="actualException">The actual exception thrown by the implementation.</param>
|
||||
<param name="serviceType">Type of service requested.</param>
|
||||
<param name="key">Name requested.</param>
|
||||
<returns>The formatted exception message string.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.FormatActivateAllExceptionMessage(System.Exception,System.Type)">
|
||||
<summary>
|
||||
Format the exception message for use in an <see cref="T:Microsoft.Practices.ServiceLocation.ActivationException"/>
|
||||
that occurs while resolving multiple service instances.
|
||||
</summary>
|
||||
<param name="actualException">The actual exception thrown by the implementation.</param>
|
||||
<param name="serviceType">Type of service requested.</param>
|
||||
<returns>The formatted exception message string.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.ServiceLocatorProvider">
|
||||
<summary>
|
||||
This delegate type is used to provide a method that will
|
||||
return the current container. Used with the <see cref="T:Microsoft.Practices.ServiceLocation.ServiceLocator"/>
|
||||
static accessor class.
|
||||
</summary>
|
||||
<returns>An <see cref="T:Microsoft.Practices.ServiceLocation.IServiceLocator"/>.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
BIN
packages/CommonServiceLocator.1.0/lib/NET35/Microsoft.Practices.ServiceLocation.pdb
vendored
Normal file
BIN
packages/CommonServiceLocator.1.0/lib/NET35/Microsoft.Practices.ServiceLocation.pdb
vendored
Normal file
Binary file not shown.
280
packages/CommonServiceLocator.1.0/lib/SL30/Microsoft.Practices.ServiceLocation.XML
vendored
Normal file
280
packages/CommonServiceLocator.1.0/lib/SL30/Microsoft.Practices.ServiceLocation.XML
vendored
Normal file
|
@ -0,0 +1,280 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Practices.ServiceLocation</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.ActivationException">
|
||||
<summary>
|
||||
The standard exception thrown when a ServiceLocator has an error in resolving an object.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Exception" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Exception" /> class with a specified error message.
|
||||
</summary>
|
||||
<param name="message">
|
||||
The message that describes the error.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor(System.String,System.Exception)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Exception" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.
|
||||
</summary>
|
||||
<param name="message">
|
||||
The error message that explains the reason for the exception.
|
||||
</param>
|
||||
<param name="innerException">
|
||||
The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Exception" /> class with serialized data.
|
||||
</summary>
|
||||
<param name="info">
|
||||
The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.
|
||||
</param>
|
||||
<param name="context">
|
||||
The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.
|
||||
</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
The <paramref name="info" /> parameter is null.
|
||||
</exception>
|
||||
<exception cref="T:System.Runtime.Serialization.SerializationException">
|
||||
The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0).
|
||||
</exception>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.IServiceLocator">
|
||||
<summary>
|
||||
The generic Service Locator interface. This interface is used
|
||||
to retrieve services (instances identified by type and optional
|
||||
name) from a container.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance(System.Type)">
|
||||
<summary>
|
||||
Get an instance of the given <paramref name="serviceType"/>.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance(System.Type,System.String)">
|
||||
<summary>
|
||||
Get an instance of the given named <paramref name="serviceType"/>.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<param name="key">Name the object was registered with.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetAllInstances(System.Type)">
|
||||
<summary>
|
||||
Get all instances of the given <paramref name="serviceType"/> currently
|
||||
registered in the container.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>A sequence of instances of the requested <paramref name="serviceType"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance``1">
|
||||
<summary>
|
||||
Get an instance of the given <typeparamref name="TService"/>.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance``1(System.String)">
|
||||
<summary>
|
||||
Get an instance of the given named <typeparamref name="TService"/>.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<param name="key">Name the object was registered with.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetAllInstances``1">
|
||||
<summary>
|
||||
Get all instances of the given <typeparamref name="TService"/> currently
|
||||
registered in the container.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>A sequence of instances of the requested <typeparamref name="TService"/>.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.Properties.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ActivateAllExceptionMessage">
|
||||
<summary>
|
||||
Looks up a localized string similar to Activation error occured while trying to get all instances of type {0}.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ActivationExceptionMessage">
|
||||
<summary>
|
||||
Looks up a localized string similar to Activation error occured while trying to get instance of type {0}, key "{1}".
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.ServiceLocator">
|
||||
<summary>
|
||||
This class provides the ambient container for this application. If your
|
||||
framework defines such an ambient container, use ServiceLocator.Current
|
||||
to get it.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocator.SetLocatorProvider(Microsoft.Practices.ServiceLocation.ServiceLocatorProvider)">
|
||||
<summary>
|
||||
Set the delegate that is used to retrieve the current container.
|
||||
</summary>
|
||||
<param name="newProvider">Delegate that, when called, will return
|
||||
the current ambient container.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.ServiceLocator.Current">
|
||||
<summary>
|
||||
The current ambient container.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase">
|
||||
<summary>
|
||||
This class is a helper that provides a default implementation
|
||||
for most of the methods of <see cref="T:Microsoft.Practices.ServiceLocation.IServiceLocator"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetService(System.Type)">
|
||||
<summary>
|
||||
Implementation of <see cref="M:System.IServiceProvider.GetService(System.Type)"/>.
|
||||
</summary>
|
||||
<param name="serviceType">The requested service.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error in resolving the service instance.</exception>
|
||||
<returns>The requested object.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(System.Type)">
|
||||
<summary>
|
||||
Get an instance of the given <paramref name="serviceType"/>.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(System.Type,System.String)">
|
||||
<summary>
|
||||
Get an instance of the given named <paramref name="serviceType"/>.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<param name="key">Name the object was registered with.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetAllInstances(System.Type)">
|
||||
<summary>
|
||||
Get all instances of the given <paramref name="serviceType"/> currently
|
||||
registered in the container.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>A sequence of instances of the requested <paramref name="serviceType"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance``1">
|
||||
<summary>
|
||||
Get an instance of the given <typeparamref name="TService"/>.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance``1(System.String)">
|
||||
<summary>
|
||||
Get an instance of the given named <typeparamref name="TService"/>.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<param name="key">Name the object was registered with.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetAllInstances``1">
|
||||
<summary>
|
||||
Get all instances of the given <typeparamref name="TService"/> currently
|
||||
registered in the container.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>A sequence of instances of the requested <typeparamref name="TService"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.DoGetInstance(System.Type,System.String)">
|
||||
<summary>
|
||||
When implemented by inheriting classes, this method will do the actual work of resolving
|
||||
the requested service instance.
|
||||
</summary>
|
||||
<param name="serviceType">Type of instance requested.</param>
|
||||
<param name="key">Name of registered service you want. May be null.</param>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.DoGetAllInstances(System.Type)">
|
||||
<summary>
|
||||
When implemented by inheriting classes, this method will do the actual work of
|
||||
resolving all the requested service instances.
|
||||
</summary>
|
||||
<param name="serviceType">Type of service requested.</param>
|
||||
<returns>Sequence of service instance objects.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.FormatActivationExceptionMessage(System.Exception,System.Type,System.String)">
|
||||
<summary>
|
||||
Format the exception message for use in an <see cref="T:Microsoft.Practices.ServiceLocation.ActivationException"/>
|
||||
that occurs while resolving a single service.
|
||||
</summary>
|
||||
<param name="actualException">The actual exception thrown by the implementation.</param>
|
||||
<param name="serviceType">Type of service requested.</param>
|
||||
<param name="key">Name requested.</param>
|
||||
<returns>The formatted exception message string.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.FormatActivateAllExceptionMessage(System.Exception,System.Type)">
|
||||
<summary>
|
||||
Format the exception message for use in an <see cref="T:Microsoft.Practices.ServiceLocation.ActivationException"/>
|
||||
that occurs while resolving multiple service instances.
|
||||
</summary>
|
||||
<param name="actualException">The actual exception thrown by the implementation.</param>
|
||||
<param name="serviceType">Type of service requested.</param>
|
||||
<returns>The formatted exception message string.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.ServiceLocatorProvider">
|
||||
<summary>
|
||||
This delegate type is used to provide a method that will
|
||||
return the current container. Used with the <see cref="T:Microsoft.Practices.ServiceLocation.ServiceLocator"/>
|
||||
static accessor class.
|
||||
</summary>
|
||||
<returns>An <see cref="T:Microsoft.Practices.ServiceLocation.IServiceLocator"/>.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
BIN
packages/Ninject.2.2.1.0/Ninject.2.2.1.0.nupkg
vendored
BIN
packages/Ninject.2.2.1.0/Ninject.2.2.1.0.nupkg
vendored
Binary file not shown.
BIN
packages/Ninject.2.2.1.4/Ninject.2.2.1.4.nupkg
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/Ninject.2.2.1.4.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Ninject.2.2.1.4/lib/net35-Client/Ninject.dll
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/lib/net35-Client/Ninject.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Ninject.2.2.1.4/lib/net35-Client/Ninject.pdb
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/lib/net35-Client/Ninject.pdb
vendored
Normal file
Binary file not shown.
4646
packages/Ninject.2.2.1.4/lib/net35-Client/Ninject.xml
vendored
Normal file
4646
packages/Ninject.2.2.1.4/lib/net35-Client/Ninject.xml
vendored
Normal file
File diff suppressed because it is too large
Load diff
Binary file not shown.
BIN
packages/Ninject.2.2.1.4/lib/net35-Full/Ninject.pdb
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/lib/net35-Full/Ninject.pdb
vendored
Normal file
Binary file not shown.
BIN
packages/Ninject.2.2.1.4/lib/net40-Client/Ninject.dll
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/lib/net40-Client/Ninject.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Ninject.2.2.1.4/lib/net40-Client/Ninject.pdb
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/lib/net40-Client/Ninject.pdb
vendored
Normal file
Binary file not shown.
4641
packages/Ninject.2.2.1.4/lib/net40-Client/Ninject.xml
vendored
Normal file
4641
packages/Ninject.2.2.1.4/lib/net40-Client/Ninject.xml
vendored
Normal file
File diff suppressed because it is too large
Load diff
BIN
packages/Ninject.2.2.1.4/lib/net40-Full/Ninject.dll
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/lib/net40-Full/Ninject.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Ninject.2.2.1.4/lib/net40-Full/Ninject.pdb
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/lib/net40-Full/Ninject.pdb
vendored
Normal file
Binary file not shown.
4686
packages/Ninject.2.2.1.4/lib/net40-Full/Ninject.xml
vendored
Normal file
4686
packages/Ninject.2.2.1.4/lib/net40-Full/Ninject.xml
vendored
Normal file
File diff suppressed because it is too large
Load diff
Binary file not shown.
BIN
packages/Ninject.2.2.1.4/lib/sl2/Ninject.pdb
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/lib/sl2/Ninject.pdb
vendored
Normal file
Binary file not shown.
BIN
packages/Ninject.2.2.1.4/lib/sl3-wp/Ninject.dll
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/lib/sl3-wp/Ninject.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Ninject.2.2.1.4/lib/sl3-wp/Ninject.pdb
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/lib/sl3-wp/Ninject.pdb
vendored
Normal file
Binary file not shown.
4439
packages/Ninject.2.2.1.4/lib/sl3-wp/Ninject.xml
vendored
Normal file
4439
packages/Ninject.2.2.1.4/lib/sl3-wp/Ninject.xml
vendored
Normal file
File diff suppressed because it is too large
Load diff
Binary file not shown.
BIN
packages/Ninject.2.2.1.4/lib/sl3/Ninject.pdb
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/lib/sl3/Ninject.pdb
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
packages/Ninject.2.2.1.4/lib/sl4/Ninject.pdb
vendored
Normal file
BIN
packages/Ninject.2.2.1.4/lib/sl4/Ninject.pdb
vendored
Normal file
Binary file not shown.
BIN
packages/Unity.2.0/Unity.2.0.nupkg
vendored
BIN
packages/Unity.2.0/Unity.2.0.nupkg
vendored
Binary file not shown.
Binary file not shown.
|
@ -1,716 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Practices.Unity.Interception.Configuration</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.AddInterfaceElement">
|
||||
<summary>
|
||||
Configuration element that lets you specify additional interfaces
|
||||
to add when this type is intercepted.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.AddInterfaceElement.SerializeContent(System.Xml.XmlWriter)">
|
||||
<summary>
|
||||
Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
|
||||
</summary>
|
||||
<remarks>The caller of this method has already written the start element tag before
|
||||
calling this method, so deriving classes only need to write the element content, not
|
||||
the start or end tags.</remarks>
|
||||
<param name="writer">Writer to send XML content to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.AddInterfaceElement.GetInjectionMembers(Microsoft.Practices.Unity.IUnityContainer,System.Type,System.Type,System.String)">
|
||||
<summary>
|
||||
Return the set of <see cref="T:Microsoft.Practices.Unity.InjectionMember"/>s that are needed
|
||||
to configure the container according to this configuration element.
|
||||
</summary>
|
||||
<param name="container">Container that is being configured.</param>
|
||||
<param name="fromType">Type that is being registered.</param>
|
||||
<param name="toType">Type that <paramref name="fromType"/> is being mapped to.</param>
|
||||
<param name="name">Name this registration is under.</param>
|
||||
<returns>One or more <see cref="T:Microsoft.Practices.Unity.InjectionMember"/> objects that should be
|
||||
applied to the container registration.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.AddInterfaceElement.TypeName">
|
||||
<summary>
|
||||
Type of interface to add.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.AddInterfaceElement.Key">
|
||||
<summary>
|
||||
Each element must have a unique key, which is generated by the subclasses.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.CallHandlerElement">
|
||||
<summary>
|
||||
Configuration element representing a call handler.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyChildElement">
|
||||
<summary>
|
||||
Base class for the two children of the Policy element:
|
||||
MatchingRuleElement and CallHandlerElement.
|
||||
</summary>
|
||||
<remarks>
|
||||
<para>
|
||||
These configuration elements have a required "name" attribute, an optional "type" attribute, and
|
||||
optional child elements <lifetime> and <injection>
|
||||
</para>
|
||||
<para>
|
||||
Elements without a value for the type attribute can only have a value for the name attribute, and
|
||||
indicate that the represented handler or rule is configured elsewhere and that a reference to
|
||||
the given name must be added to the policy to be resolved, while elements with a value for the type
|
||||
attribute indicate how the represented handler or rule should be built and can optionally specify
|
||||
lifetime management and injection configuration.
|
||||
</para>
|
||||
<para>
|
||||
This element is similar to the <see cref="T:Microsoft.Practices.Unity.Configuration.RegisterElement"/>, except that it does not provide
|
||||
an extension point for arbitrary configuration.
|
||||
</para>
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyChildElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)">
|
||||
<summary>
|
||||
Reads XML from the configuration file.
|
||||
</summary>
|
||||
<param name="reader">The <see cref="T:System.Xml.XmlReader"/> that reads from the configuration file.
|
||||
</param><param name="serializeCollectionKey">true to serialize only the collection key properties; otherwise, false.
|
||||
</param><exception cref="T:System.Configuration.ConfigurationErrorsException">The element to read is locked.
|
||||
- or -
|
||||
An attribute of the current node is not recognized.
|
||||
- or -
|
||||
The lock status of the current node cannot be determined.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyChildElement.SerializeContent(System.Xml.XmlWriter)">
|
||||
<summary>
|
||||
Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
|
||||
</summary>
|
||||
<remarks>The caller of this method has already written the start element tag before
|
||||
calling this method, so deriving classes only need to write the element content, not
|
||||
the start or end tags.</remarks>
|
||||
<param name="writer">Writer to send XML content to.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyChildElement.Name">
|
||||
<summary>
|
||||
Name of this item
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyChildElement.TypeName">
|
||||
<summary>
|
||||
Type that implements this matching rule or call handler.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyChildElement.Injection">
|
||||
<summary>
|
||||
Injection members that control how this item is created.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyChildElement.Lifetime">
|
||||
<summary>
|
||||
Lifetime manager for this item.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.CallHandlerElementCollection">
|
||||
<summary>
|
||||
A collection of <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.CallHandlerElement"/>s for configuration.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.CallHandlerElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
|
||||
<summary>
|
||||
Gets the element key for a specified configuration element when overridden in a derived class.
|
||||
</summary>
|
||||
<returns>
|
||||
An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
|
||||
</returns>
|
||||
<param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.CallHandlerElementCollection.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
|
||||
<summary>
|
||||
Causes the configuration system to throw an exception.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the unrecognized element was deserialized successfully; otherwise, false. The default is false.
|
||||
</returns>
|
||||
<param name="elementName">The name of the unrecognized element.
|
||||
</param><param name="reader">An input stream that reads XML from the configuration file.
|
||||
</param><exception cref="T:System.Configuration.ConfigurationErrorsException">The element specified in <paramref name="elementName"/> is the <clear> element.
|
||||
</exception><exception cref="T:System.ArgumentException"><paramref name="elementName"/> starts with the reserved prefix "config" or "lock".
|
||||
</exception>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.CallHandlerElementCollection.Item(System.String)">
|
||||
<summary>
|
||||
Retrieve a call handler element from the collection by name.
|
||||
</summary>
|
||||
<param name="name">Name to look up.</param>
|
||||
<returns>The rule, or null if not in the collection.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.DefaultElement">
|
||||
<summary>
|
||||
The <default> element that appears inside an <interceptor> element.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorRegistrationElement">
|
||||
<summary>
|
||||
Base class for the default and key elements that can occur
|
||||
inside the <interceptor> element.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorRegistrationElement.SerializeContent(System.Xml.XmlWriter)">
|
||||
<summary>
|
||||
Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
|
||||
</summary>
|
||||
<remarks>The caller of this method has already written the start element tag before
|
||||
calling this method, so deriving classes only need to write the element content, not
|
||||
the start or end tags.</remarks>
|
||||
<param name="writer">Writer to send XML content to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorRegistrationElement.RegisterInterceptor(Microsoft.Practices.Unity.IUnityContainer,Microsoft.Practices.Unity.InterceptionExtension.IInterceptor)">
|
||||
<summary>
|
||||
Actually register the interceptor against this type.
|
||||
</summary>
|
||||
<param name="container">Container to configure.</param>
|
||||
<param name="interceptor">interceptor to register.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorRegistrationElement.TypeName">
|
||||
<summary>
|
||||
Type name that this interceptor will be registered for.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorRegistrationElement.ResolvedType">
|
||||
<summary>
|
||||
Return the type object that is resolved from the <see cref="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorRegistrationElement.TypeName"/> property.
|
||||
</summary>
|
||||
<returns>The type object.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.DefaultElement.RegisterInterceptor(Microsoft.Practices.Unity.IUnityContainer,Microsoft.Practices.Unity.InterceptionExtension.IInterceptor)">
|
||||
<summary>
|
||||
Actually register the interceptor against this type.
|
||||
</summary>
|
||||
<param name="container">Container to configure.</param>
|
||||
<param name="interceptor">interceptor to register.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionBehaviorElement">
|
||||
<summary>
|
||||
Configuration elmement for specifying
|
||||
interception behaviors for a type.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionBehaviorElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)">
|
||||
<summary>
|
||||
Reads XML from the configuration file.
|
||||
</summary>
|
||||
<param name="reader">The <see cref="T:System.Xml.XmlReader"/> that reads from the configuration file.
|
||||
</param><param name="serializeCollectionKey">true to serialize only the collection key properties; otherwise, false.
|
||||
</param><exception cref="T:System.Configuration.ConfigurationErrorsException">The element to read is locked.
|
||||
- or -
|
||||
An attribute of the current node is not recognized.
|
||||
- or -
|
||||
The lock status of the current node cannot be determined.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionBehaviorElement.SerializeContent(System.Xml.XmlWriter)">
|
||||
<summary>
|
||||
Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
|
||||
</summary>
|
||||
<remarks>The caller of this method has already written the start element tag before
|
||||
calling this method, so deriving classes only need to write the element content, not
|
||||
the start or end tags.</remarks>
|
||||
<param name="writer">Writer to send XML content to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionBehaviorElement.GetInjectionMembers(Microsoft.Practices.Unity.IUnityContainer,System.Type,System.Type,System.String)">
|
||||
<summary>
|
||||
Return the set of <see cref="T:Microsoft.Practices.Unity.InjectionMember"/>s that are needed
|
||||
to configure the container according to this configuration element.
|
||||
</summary>
|
||||
<param name="container">Container that is being configured.</param>
|
||||
<param name="fromType">Type that is being registered.</param>
|
||||
<param name="toType">Type that <paramref name="fromType"/> is being mapped to.</param>
|
||||
<param name="name">Name this registration is under.</param>
|
||||
<returns>One or more <see cref="T:Microsoft.Practices.Unity.InjectionMember"/> objects that should be
|
||||
applied to the container registration.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionBehaviorElement.TypeName">
|
||||
<summary>
|
||||
Type of behavior to add.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionBehaviorElement.Name">
|
||||
<summary>
|
||||
Name of behavior to resolve.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionBehaviorElement.IsDefaultForType">
|
||||
<summary>
|
||||
Should this behavior be configured as a default behavior for this type, or
|
||||
specifically for this type/name pair only?
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionBehaviorElement.Key">
|
||||
<summary>
|
||||
Each element must have a unique key, which is generated by the subclasses.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionConfigurationExtension">
|
||||
<summary>
|
||||
Section extension class used to add the elements needed to configure
|
||||
Unity interception to the configuration schema.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionConfigurationExtension.AddExtensions(Microsoft.Practices.Unity.Configuration.SectionExtensionContext)">
|
||||
<summary>
|
||||
Add the extensions to the section via the context.
|
||||
</summary>
|
||||
<param name="context">Context object that can be used to add elements and aliases.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionElement">
|
||||
<summary>
|
||||
A configuration element that contains the top-level container configuration
|
||||
information for interception - handler policies and global interceptor definitions.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionElement.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
|
||||
<summary>
|
||||
Gets a value indicating whether an unknown element is encountered during deserialization.
|
||||
</summary>
|
||||
<returns>
|
||||
true when an unknown element is encountered while deserializing; otherwise, false.
|
||||
</returns>
|
||||
<param name="elementName">The name of the unknown subelement.
|
||||
</param><param name="reader">The <see cref="T:System.Xml.XmlReader"/> being used for deserialization.
|
||||
</param><exception cref="T:System.Configuration.ConfigurationErrorsException">The element identified by <paramref name="elementName"/> is locked.
|
||||
- or -
|
||||
One or more of the element's attributes is locked.
|
||||
- or -
|
||||
<paramref name="elementName"/> is unrecognized, or the element has an unrecognized attribute.
|
||||
- or -
|
||||
The element has a Boolean attribute with an invalid value.
|
||||
- or -
|
||||
An attempt was made to deserialize a property more than once.
|
||||
- or -
|
||||
An attempt was made to deserialize a property that is not a valid member of the element.
|
||||
- or -
|
||||
The element cannot contain a CDATA or text element.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionElement.SerializeContent(System.Xml.XmlWriter)">
|
||||
<summary>
|
||||
Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
|
||||
</summary>
|
||||
<remarks>The caller of this method has already written the start element tag before
|
||||
calling this method, so deriving classes only need to write the element content, not
|
||||
the start or end tags.</remarks>
|
||||
<param name="writer">Writer to send XML content to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionElement.ConfigureContainer(Microsoft.Practices.Unity.IUnityContainer)">
|
||||
<summary>
|
||||
Apply this element's configuration to the given <paramref name="container"/>.
|
||||
</summary>
|
||||
<param name="container">Container to configure.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionElement.Policies">
|
||||
<summary>
|
||||
Policies defined for this container.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorElement">
|
||||
<summary>
|
||||
Configuration element that lets you configure
|
||||
what interceptor to use for a type.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorElement.#ctor">
|
||||
<summary>
|
||||
Initialize a new <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorElement"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorElement.SerializeContent(System.Xml.XmlWriter)">
|
||||
<summary>
|
||||
Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
|
||||
</summary>
|
||||
<remarks>The caller of this method has already written the start element tag before
|
||||
calling this method, so deriving classes only need to write the element content, not
|
||||
the start or end tags.</remarks>
|
||||
<param name="writer">Writer to send XML content to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorElement.GetInjectionMembers(Microsoft.Practices.Unity.IUnityContainer,System.Type,System.Type,System.String)">
|
||||
<summary>
|
||||
Return the set of <see cref="T:Microsoft.Practices.Unity.InjectionMember"/>s that are needed
|
||||
to configure the container according to this configuration element.
|
||||
</summary>
|
||||
<param name="container">Container that is being configured.</param>
|
||||
<param name="fromType">Type that is being registered.</param>
|
||||
<param name="toType">Type that <paramref name="fromType"/> is being mapped to.</param>
|
||||
<param name="name">Name this registration is under.</param>
|
||||
<returns>One or more <see cref="T:Microsoft.Practices.Unity.InjectionMember"/> objects that should be
|
||||
applied to the container registration.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorElement.TypeName">
|
||||
<summary>
|
||||
Type name for the interceptor to apply.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorElement.Name">
|
||||
<summary>
|
||||
Name to use when resolving interceptors from the container.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorElement.IsDefaultForType">
|
||||
<summary>
|
||||
Should this interceptor be registered as the default for the contained
|
||||
type, or only for this particular type/name pair?
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorElement.Key">
|
||||
<summary>
|
||||
Each element must have a unique key, which is generated by the subclasses.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorRegistrationElementCollection">
|
||||
<summary>
|
||||
A collection of <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorRegistrationElement"/> objects as shown
|
||||
in configuration.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorRegistrationElementCollection.CreateNewElement">
|
||||
<summary>
|
||||
When overridden in a derived class, creates a new <see cref="T:System.Configuration.ConfigurationElement"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
A new <see cref="T:System.Configuration.ConfigurationElement"/>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorRegistrationElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
|
||||
<summary>
|
||||
Gets the element key for a specified configuration element when overridden in a derived class.
|
||||
</summary>
|
||||
<returns>
|
||||
An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
|
||||
</returns>
|
||||
<param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for.
|
||||
</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsElement">
|
||||
<summary>
|
||||
Configuration element that provides a top-level element for
|
||||
configuration interceptors for types in a container.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsElement.SerializeContent(System.Xml.XmlWriter)">
|
||||
<summary>
|
||||
Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
|
||||
</summary>
|
||||
<remarks>The caller of this method has already written the start element tag before
|
||||
calling this method, so deriving classes only need to write the element content, not
|
||||
the start or end tags.</remarks>
|
||||
<param name="writer">Writer to send XML content to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsElement.ConfigureContainer(Microsoft.Practices.Unity.IUnityContainer)">
|
||||
<summary>
|
||||
Apply this element's configuration to the given <paramref name="container"/>.
|
||||
</summary>
|
||||
<param name="container">Container to configure.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsElement.Interceptors">
|
||||
<summary>
|
||||
The various child elements that are contained in this element.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsInterceptorElement">
|
||||
<summary>
|
||||
Configuration element that represents the configuration for
|
||||
a specific interceptor, as presented in the config file inside
|
||||
the <interceptors> element.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsInterceptorElement.SerializeContent(System.Xml.XmlWriter)">
|
||||
<summary>
|
||||
Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
|
||||
</summary>
|
||||
<remarks>The caller of this method has already written the start element tag before
|
||||
calling this method, so deriving classes only need to write the element content, not
|
||||
the start or end tags.</remarks>
|
||||
<param name="writer">Writer to send XML content to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsInterceptorElement.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
|
||||
<summary>
|
||||
Gets a value indicating whether an unknown element is encountered during deserialization.
|
||||
</summary>
|
||||
<returns>
|
||||
true when an unknown element is encountered while deserializing; otherwise, false.
|
||||
</returns>
|
||||
<param name="elementName">The name of the unknown subelement.
|
||||
</param><param name="reader">The <see cref="T:System.Xml.XmlReader"/> being used for deserialization.
|
||||
</param><exception cref="T:System.Configuration.ConfigurationErrorsException">The element identified by <paramref name="elementName"/> is locked.
|
||||
- or -
|
||||
One or more of the element's attributes is locked.
|
||||
- or -
|
||||
<paramref name="elementName"/> is unrecognized, or the element has an unrecognized attribute.
|
||||
- or -
|
||||
The element has a Boolean attribute with an invalid value.
|
||||
- or -
|
||||
An attempt was made to deserialize a property more than once.
|
||||
- or -
|
||||
An attempt was made to deserialize a property that is not a valid member of the element.
|
||||
- or -
|
||||
The element cannot contain a CDATA or text element.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsInterceptorElement.TypeName">
|
||||
<summary>
|
||||
Type of interceptor to configure.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsInterceptorElement.Registrations">
|
||||
<summary>
|
||||
The types that this interceptor will be registered against.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsInterceptorElement.Value">
|
||||
<summary>
|
||||
Any value passed to the type converter.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsInterceptorElement.TypeConverterTypeName">
|
||||
<summary>
|
||||
Type converter to use to create the interceptor, if any.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsInterceptorElementCollection">
|
||||
<summary>
|
||||
A collection of <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsInterceptorElement"/> objects
|
||||
as stored in configuration.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptorsInterceptorElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
|
||||
<summary>
|
||||
Gets the element key for a specified configuration element when overridden in a derived class.
|
||||
</summary>
|
||||
<returns>
|
||||
An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
|
||||
</returns>
|
||||
<param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for.
|
||||
</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.KeyElement">
|
||||
<summary>
|
||||
The <key> element that occurs inside an <interceptor> element
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.KeyElement.SerializeContent(System.Xml.XmlWriter)">
|
||||
<summary>
|
||||
Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
|
||||
</summary>
|
||||
<remarks>The caller of this method has already written the start element tag before
|
||||
calling this method, so deriving classes only need to write the element content, not
|
||||
the start or end tags.</remarks>
|
||||
<param name="writer">Writer to send XML content to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.KeyElement.RegisterInterceptor(Microsoft.Practices.Unity.IUnityContainer,Microsoft.Practices.Unity.InterceptionExtension.IInterceptor)">
|
||||
<summary>
|
||||
Actually register the interceptor against this type.
|
||||
</summary>
|
||||
<param name="container">Container to configure.</param>
|
||||
<param name="interceptor">interceptor to register.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.KeyElement.Name">
|
||||
<summary>
|
||||
Name registration should be under. To register under the default, leave blank.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.MatchingRuleElement">
|
||||
<summary>
|
||||
A configuration element representing a matching rule.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.MatchingRuleElementCollection">
|
||||
<summary>
|
||||
A collection of <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.MatchingRuleElement"/>s for configuration.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.MatchingRuleElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
|
||||
<summary>
|
||||
Gets the element key for a specified configuration element when overridden in a derived class.
|
||||
</summary>
|
||||
<returns>
|
||||
An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
|
||||
</returns>
|
||||
<param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.MatchingRuleElementCollection.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
|
||||
<summary>
|
||||
Causes the configuration system to throw an exception.
|
||||
</summary>
|
||||
<returns>
|
||||
true if the unrecognized element was deserialized successfully; otherwise, false. The default is false.
|
||||
</returns>
|
||||
<param name="elementName">The name of the unrecognized element.
|
||||
</param><param name="reader">An input stream that reads XML from the configuration file.
|
||||
</param><exception cref="T:System.Configuration.ConfigurationErrorsException">The element specified in <paramref name="elementName"/> is the <clear> element.
|
||||
</exception><exception cref="T:System.ArgumentException"><paramref name="elementName"/> starts with the reserved prefix "config" or "lock".
|
||||
</exception>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.MatchingRuleElementCollection.Item(System.String)">
|
||||
<summary>
|
||||
Retrieve a matching rule element from the collection by name.
|
||||
</summary>
|
||||
<param name="name">Name to look up.</param>
|
||||
<returns>The rule, or null if not in the collection.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyElement">
|
||||
<summary>
|
||||
Configuration element for building up an interception policy.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyElement.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
|
||||
<summary>
|
||||
Gets a value indicating whether an unknown element is encountered during deserialization.
|
||||
</summary>
|
||||
<returns>
|
||||
true when an unknown element is encountered while deserializing; otherwise, false.
|
||||
</returns>
|
||||
<param name="elementName">The name of the unknown subelement.
|
||||
</param><param name="reader">The <see cref="T:System.Xml.XmlReader"/> being used for deserialization.
|
||||
</param><exception cref="T:System.Configuration.ConfigurationErrorsException">The element identified by <paramref name="elementName"/> is locked.
|
||||
- or -
|
||||
One or more of the element's attributes is locked.
|
||||
- or -
|
||||
<paramref name="elementName"/> is unrecognized, or the element has an unrecognized attribute.
|
||||
- or -
|
||||
The element has a Boolean attribute with an invalid value.
|
||||
- or -
|
||||
An attempt was made to deserialize a property more than once.
|
||||
- or -
|
||||
An attempt was made to deserialize a property that is not a valid member of the element.
|
||||
- or -
|
||||
The element cannot contain a CDATA or text element.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyElement.SerializeContent(System.Xml.XmlWriter)">
|
||||
<summary>
|
||||
Write the contents of this element to the given <see cref="T:System.Xml.XmlWriter"/>.
|
||||
</summary>
|
||||
<remarks>The caller of this method has already written the start element tag before
|
||||
calling this method, so deriving classes only need to write the element content, not
|
||||
the start or end tags.</remarks>
|
||||
<param name="writer">Writer to send XML content to.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyElement.Name">
|
||||
<summary>
|
||||
Name of this policy.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyElement.MatchingRules">
|
||||
<summary>
|
||||
Matching rules for this policy.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyElement.CallHandlers">
|
||||
<summary>
|
||||
Call handlers for this policy.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyElementCollection">
|
||||
<summary>
|
||||
A collection of <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyElement"/> in the configuration.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
|
||||
<summary>
|
||||
Gets the element key for a specified configuration element when overridden in a derived class.
|
||||
</summary>
|
||||
<returns>
|
||||
An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
|
||||
</returns>
|
||||
<param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for.
|
||||
</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyElementCollection.Item(System.String)">
|
||||
<summary>
|
||||
Indexer to retrieve policy element objects by name.
|
||||
</summary>
|
||||
<param name="policyName">Name of policy to get.</param>
|
||||
<returns>The element.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyInjectionElement">
|
||||
<summary>
|
||||
A shortcut element to enable the policy injection behavior.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyInjectionElement.GetInjectionMembers(Microsoft.Practices.Unity.IUnityContainer,System.Type,System.Type,System.String)">
|
||||
<summary>
|
||||
Return the set of <see cref="T:Microsoft.Practices.Unity.InjectionMember"/>s that are needed
|
||||
to configure the container according to this configuration element.
|
||||
</summary>
|
||||
<param name="container">Container that is being configured.</param>
|
||||
<param name="fromType">Type that is being registered.</param>
|
||||
<param name="toType">Type that <paramref name="fromType"/> is being mapped to.</param>
|
||||
<param name="name">Name this registration is under.</param>
|
||||
<returns>One or more <see cref="T:Microsoft.Practices.Unity.InjectionMember"/> objects that should be
|
||||
applied to the container registration.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.PolicyInjectionElement.Key">
|
||||
<summary>
|
||||
Each element must have a unique key, which is generated by the subclasses.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.Unity.InterceptionExtension.Configuration.Properties.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.Properties.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.Properties.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.Properties.Resources.CannotCreateInterceptorRegistrationElement">
|
||||
<summary>
|
||||
Looks up a localized string similar to The abstract type InterceptorRegistrationElement cannot be created. Please create a concrete instance..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.Properties.Resources.CannotHaveInjectionWithoutTypeName">
|
||||
<summary>
|
||||
Looks up a localized string similar to The <injection/> element is not allowed on element named '{0}' because it doesn't have a type attribute..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.Properties.Resources.CannotHaveLifetimeWithoutTypeName">
|
||||
<summary>
|
||||
Looks up a localized string similar to The <lifetime/> element is not allowed on element named '{0}' because it doesn't have a type attribute..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.Properties.Resources.CouldNotResolveType">
|
||||
<summary>
|
||||
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..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.Properties.Resources.ExceptionCannotCreateInstance">
|
||||
<summary>
|
||||
Looks up a localized string similar to Cannot create instance of type {0} with a default constructor..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.Properties.Resources.ExceptionResolvedTypeNotCompatible">
|
||||
<summary>
|
||||
Looks up a localized string similar to The type name {0} resolved to type {1} is not compatible with the required type {2}..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.Properties.Resources.InvalidInterceptorType">
|
||||
<summary>
|
||||
Looks up a localized string similar to The type {0} could not be resolved to a valid type. Please double check your configuration..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.Unity.InterceptionExtension.Configuration.Properties.Resources.MustHaveAtLeastOneBehaviorAttribute">
|
||||
<summary>
|
||||
Looks up a localized string similar to The interception behavior element must have at least one of the 'name' or 'type' attributes..
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
Binary file not shown.
BIN
packages/Unity.2.1.505.0/Unity.2.1.505.0.nupkg
vendored
Normal file
BIN
packages/Unity.2.1.505.0/Unity.2.1.505.0.nupkg
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
packages/Unity.2.1.505.0/lib/NET35/Microsoft.Practices.Unity.dll
vendored
Normal file
BIN
packages/Unity.2.1.505.0/lib/NET35/Microsoft.Practices.Unity.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Unity.2.1.505.0/lib/SL30/Microsoft.Practices.Unity.Silverlight.dll
vendored
Normal file
BIN
packages/Unity.2.1.505.0/lib/SL30/Microsoft.Practices.Unity.Silverlight.dll
vendored
Normal file
Binary file not shown.
|
@ -4044,6 +4044,63 @@
|
|||
</summary>
|
||||
<param name="context">Context of the build operation.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ObjectBuilder2.SingletonLifetimePolicy">
|
||||
<summary>
|
||||
A <see cref="T:Microsoft.Practices.ObjectBuilder2.ILifetimePolicy"/> that stores objects in the locator and
|
||||
lifetime container provided by the context.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ObjectBuilder2.SingletonLifetimePolicy.GetValue">
|
||||
<summary>
|
||||
Retrieve a value from the backing store associated with this Lifetime policy.
|
||||
</summary>
|
||||
<returns>the object desired, or null if no such object is currently stored.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ObjectBuilder2.SingletonLifetimePolicy.SetValue(System.Object)">
|
||||
<summary>
|
||||
Stores the given value into backing store for retrieval later.
|
||||
</summary>
|
||||
<param name="newValue">The object being stored.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ObjectBuilder2.SingletonLifetimePolicy.RemoveValue">
|
||||
<summary>
|
||||
Remove the given object from backing store.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ObjectBuilder2.SingletonLifetimePolicy.Recover">
|
||||
<summary>
|
||||
A method that does whatever is needed to clean up
|
||||
as part of cleaning up after an exception.
|
||||
</summary>
|
||||
<remarks>
|
||||
Don't do anything that could throw in this method,
|
||||
it will cause later recover operations to get skipped
|
||||
and play real havok with the stack trace.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ObjectBuilder2.TransientLifetimePolicy">
|
||||
<summary>
|
||||
An implementation of <see cref="T:Microsoft.Practices.ObjectBuilder2.ILifetimePolicy"/> that does nothing,
|
||||
ensuring that a new object gets created every time.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ObjectBuilder2.TransientLifetimePolicy.GetValue">
|
||||
<summary>
|
||||
Retrieve a value from the backing store associated with this Lifetime policy.
|
||||
</summary>
|
||||
<returns>the object desired, or null if no such object is currently stored.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ObjectBuilder2.TransientLifetimePolicy.SetValue(System.Object)">
|
||||
<summary>
|
||||
Stores the given value into backing store for retrieval later.
|
||||
</summary>
|
||||
<param name="newValue">The object being stored.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ObjectBuilder2.TransientLifetimePolicy.RemoveValue">
|
||||
<summary>
|
||||
Remove the given object from backing store.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ObjectBuilder2.StagedStrategyChain`1">
|
||||
<summary>
|
||||
Represents a chain of responsibility for builder strategies partitioned by stages.
|
BIN
packages/Unity.2.1.505.0/tools/Utils.psm1
vendored
Normal file
BIN
packages/Unity.2.1.505.0/tools/Utils.psm1
vendored
Normal file
Binary file not shown.
BIN
packages/Unity.2.1.505.0/tools/install.ps1
vendored
Normal file
BIN
packages/Unity.2.1.505.0/tools/install.ps1
vendored
Normal file
Binary file not shown.
BIN
packages/jQuery.1.5.2/jQuery.1.5.2.nupkg
vendored
BIN
packages/jQuery.1.5.2/jQuery.1.5.2.nupkg
vendored
Binary file not shown.
6938
packages/jQuery.1.6.1/Content/Scripts/jquery-1.6.1-vsdoc.js
vendored
Normal file
6938
packages/jQuery.1.6.1/Content/Scripts/jquery-1.6.1-vsdoc.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
8936
packages/jQuery.1.6.1/Content/Scripts/jquery-1.6.1.js
vendored
Normal file
8936
packages/jQuery.1.6.1/Content/Scripts/jquery-1.6.1.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
18
packages/jQuery.1.6.1/Content/Scripts/jquery-1.6.1.min.js
vendored
Normal file
18
packages/jQuery.1.6.1/Content/Scripts/jquery-1.6.1.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -14,7 +14,7 @@ if ($copyOverParaFile) {
|
|||
#Copy the -vsdoc-para file over the -vsdoc file
|
||||
#$projectFolder = Split-Path -Parent $project.FileName
|
||||
$projectFolder = $project.Properties.Item("FullPath").Value
|
||||
$paraVsDocPath = Join-Path $toolsPath jquery-1.5.2-vsdoc-para.js
|
||||
$vsDocPath = Join-Path $projectFolder Scripts\jquery-1.5.2-vsdoc.js
|
||||
$paraVsDocPath = Join-Path $toolsPath jquery-1.6.1-vsdoc-para.js
|
||||
$vsDocPath = Join-Path $projectFolder Scripts\jquery-1.6.1-vsdoc.js
|
||||
Copy-Item $paraVsDocPath $vsDocPath -Force
|
||||
}
|
6938
packages/jQuery.1.6.1/Tools/jquery-1.6.1-vsdoc-para.js
vendored
Normal file
6938
packages/jQuery.1.6.1/Tools/jquery-1.6.1-vsdoc-para.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
|
@ -3,9 +3,9 @@ param($installPath, $toolsPath, $package, $project)
|
|||
#Forcibly delete the -vsdoc file
|
||||
#$projectFolder = Split-Path -Parent $project.FileName
|
||||
$projectFolder = $project.Properties.Item("FullPath").Value
|
||||
$projVsDocPath = Join-Path $projectFolder Scripts\jquery-1.5.2-vsdoc.js
|
||||
$origVsDocPath = Join-Path $installPath Content\Scripts\jquery-1.5.2-vsdoc.js
|
||||
$origVsDocParaPath = Join-Path $toolsPath jquery-1.5.2-vsdoc-para.js
|
||||
$projVsDocPath = Join-Path $projectFolder Scripts\jquery-1.6.1-vsdoc.js
|
||||
$origVsDocPath = Join-Path $installPath Content\Scripts\jquery-1.6.1-vsdoc.js
|
||||
$origVsDocParaPath = Join-Path $toolsPath jquery-1.6.1-vsdoc-para.js
|
||||
|
||||
function Get-Checksum($file) {
|
||||
$cryptoProvider = New-Object "System.Security.Cryptography.MD5CryptoServiceProvider"
|
BIN
packages/jQuery.1.6.1/jQuery.1.6.1.nupkg
vendored
Normal file
BIN
packages/jQuery.1.6.1/jQuery.1.6.1.nupkg
vendored
Normal file
Binary file not shown.
1291
packages/jQuery.Validation.1.8.0.1/Content/Scripts/jquery.validate-vsdoc.js
vendored
Normal file
1291
packages/jQuery.Validation.1.8.0.1/Content/Scripts/jquery.validate-vsdoc.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
1159
packages/jQuery.Validation.1.8.0.1/Content/Scripts/jquery.validate.js
vendored
Normal file
1159
packages/jQuery.Validation.1.8.0.1/Content/Scripts/jquery.validate.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
50
packages/jQuery.Validation.1.8.0.1/Content/Scripts/jquery.validate.min.js
vendored
Normal file
50
packages/jQuery.Validation.1.8.0.1/Content/Scripts/jquery.validate.min.js
vendored
Normal file
|
@ -0,0 +1,50 @@
|
|||
/**
|
||||
* jQuery Validation Plugin 1.8.0
|
||||
*
|
||||
* http://bassistance.de/jquery-plugins/jquery-plugin-validation/
|
||||
* http://docs.jquery.com/Plugins/Validation
|
||||
*
|
||||
* Copyright (c) 2006 - 2011 Jörn Zaefferer
|
||||
*
|
||||
* Dual licensed under the MIT and GPL licenses:
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
* http://www.gnu.org/licenses/gpl.html
|
||||
*/
|
||||
(function(c){c.extend(c.fn,{validate:function(a){if(this.length){var b=c.data(this[0],"validator");if(b)return b;b=new c.validator(a,this[0]);c.data(this[0],"validator",b);if(b.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){b.cancelSubmit=true});b.settings.submitHandler&&this.find("input, button").filter(":submit").click(function(){b.submitButton=this});this.submit(function(d){function e(){if(b.settings.submitHandler){if(b.submitButton)var f=c("<input type='hidden'/>").attr("name",
|
||||
b.submitButton.name).val(b.submitButton.value).appendTo(b.currentForm);b.settings.submitHandler.call(b,b.currentForm);b.submitButton&&f.remove();return false}return true}b.settings.debug&&d.preventDefault();if(b.cancelSubmit){b.cancelSubmit=false;return e()}if(b.form()){if(b.pendingRequest){b.formSubmitted=true;return false}return e()}else{b.focusInvalid();return false}})}return b}else a&&a.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing")},valid:function(){if(c(this[0]).is("form"))return this.validate().form();
|
||||
else{var a=true,b=c(this[0].form).validate();this.each(function(){a&=b.element(this)});return a}},removeAttrs:function(a){var b={},d=this;c.each(a.split(/\s/),function(e,f){b[f]=d.attr(f);d.removeAttr(f)});return b},rules:function(a,b){var d=this[0];if(a){var e=c.data(d.form,"validator").settings,f=e.rules,g=c.validator.staticRules(d);switch(a){case "add":c.extend(g,c.validator.normalizeRule(b));f[d.name]=g;if(b.messages)e.messages[d.name]=c.extend(e.messages[d.name],b.messages);break;case "remove":if(!b){delete f[d.name];
|
||||
return g}var h={};c.each(b.split(/\s/),function(j,i){h[i]=g[i];delete g[i]});return h}}d=c.validator.normalizeRules(c.extend({},c.validator.metadataRules(d),c.validator.classRules(d),c.validator.attributeRules(d),c.validator.staticRules(d)),d);if(d.required){e=d.required;delete d.required;d=c.extend({required:e},d)}return d}});c.extend(c.expr[":"],{blank:function(a){return!c.trim(""+a.value)},filled:function(a){return!!c.trim(""+a.value)},unchecked:function(a){return!a.checked}});c.validator=function(a,
|
||||
b){this.settings=c.extend(true,{},c.validator.defaults,a);this.currentForm=b;this.init()};c.validator.format=function(a,b){if(arguments.length==1)return function(){var d=c.makeArray(arguments);d.unshift(a);return c.validator.format.apply(this,d)};if(arguments.length>2&&b.constructor!=Array)b=c.makeArray(arguments).slice(1);if(b.constructor!=Array)b=[b];c.each(b,function(d,e){a=a.replace(RegExp("\\{"+d+"\\}","g"),e)});return a};c.extend(c.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",
|
||||
validClass:"valid",errorElement:"label",focusInvalid:true,errorContainer:c([]),errorLabelContainer:c([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(a){this.lastActive=a;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,a,this.settings.errorClass,this.settings.validClass);this.addWrapper(this.errorsFor(a)).hide()}},onfocusout:function(a){if(!this.checkable(a)&&(a.name in this.submitted||!this.optional(a)))this.element(a)},
|
||||
onkeyup:function(a){if(a.name in this.submitted||a==this.lastElement)this.element(a)},onclick:function(a){if(a.name in this.submitted)this.element(a);else a.parentNode.name in this.submitted&&this.element(a.parentNode)},highlight:function(a,b,d){c(a).addClass(b).removeClass(d)},unhighlight:function(a,b,d){c(a).removeClass(b).addClass(d)}},setDefaults:function(a){c.extend(c.validator.defaults,a)},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",
|
||||
url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxlength:c.validator.format("Please enter no more than {0} characters."),minlength:c.validator.format("Please enter at least {0} characters."),rangelength:c.validator.format("Please enter a value between {0} and {1} characters long."),
|
||||
range:c.validator.format("Please enter a value between {0} and {1}."),max:c.validator.format("Please enter a value less than or equal to {0}."),min:c.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){function a(e){var f=c.data(this[0].form,"validator");e="on"+e.type.replace(/^validate/,"");f.settings[e]&&f.settings[e].call(f,this[0])}this.labelContainer=c(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&
|
||||
this.labelContainer||c(this.currentForm);this.containers=c(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var b=this.groups={};c.each(this.settings.groups,function(e,f){c.each(f.split(/\s/),function(g,h){b[h]=e})});var d=this.settings.rules;c.each(d,function(e,f){d[e]=c.validator.normalizeRule(f)});c(this.currentForm).validateDelegate(":text, :password, :file, select, textarea",
|
||||
"focusin focusout keyup",a).validateDelegate(":radio, :checkbox, select, option","click",a);this.settings.invalidHandler&&c(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler)},form:function(){this.checkForm();c.extend(this.submitted,this.errorMap);this.invalid=c.extend({},this.errorMap);this.valid()||c(this.currentForm).triggerHandler("invalid-form",[this]);this.showErrors();return this.valid()},checkForm:function(){this.prepareForm();for(var a=0,b=this.currentElements=this.elements();b[a];a++)this.check(b[a]);
|
||||
return this.valid()},element:function(a){this.lastElement=a=this.clean(a);this.prepareElement(a);this.currentElements=c(a);var b=this.check(a);if(b)delete this.invalid[a.name];else this.invalid[a.name]=true;if(!this.numberOfInvalids())this.toHide=this.toHide.add(this.containers);this.showErrors();return b},showErrors:function(a){if(a){c.extend(this.errorMap,a);this.errorList=[];for(var b in a)this.errorList.push({message:a[b],element:this.findByName(b)[0]});this.successList=c.grep(this.successList,
|
||||
function(d){return!(d.name in a)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){c.fn.resetForm&&c(this.currentForm).resetForm();this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass)},numberOfInvalids:function(){return this.objectLength(this.invalid)},objectLength:function(a){var b=0,d;for(d in a)b++;return b},hideErrors:function(){this.addWrapper(this.toHide).hide()},
|
||||
valid:function(){return this.size()==0},size:function(){return this.errorList.length},focusInvalid:function(){if(this.settings.focusInvalid)try{c(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus().trigger("focusin")}catch(a){}},findLastActive:function(){var a=this.lastActive;return a&&c.grep(this.errorList,function(b){return b.element.name==a.name}).length==1&&a},elements:function(){var a=this,b={};return c([]).add(this.currentForm.elements).filter(":input").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&
|
||||
a.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in b||!a.objectLength(c(this).rules()))return false;return b[this.name]=true})},clean:function(a){return c(a)[0]},errors:function(){return c(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext)},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=c([]);this.toHide=c([]);this.currentElements=c([])},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers)},
|
||||
prepareElement:function(a){this.reset();this.toHide=this.errorsFor(a)},check:function(a){a=this.clean(a);if(this.checkable(a))a=this.findByName(a.name).not(this.settings.ignore)[0];var b=c(a).rules(),d=false,e;for(e in b){var f={method:e,parameters:b[e]};try{var g=c.validator.methods[e].call(this,a.value.replace(/\r/g,""),a,f.parameters);if(g=="dependency-mismatch")d=true;else{d=false;if(g=="pending"){this.toHide=this.toHide.not(this.errorsFor(a));return}if(!g){this.formatAndAdd(a,f);return false}}}catch(h){this.settings.debug&&
|
||||
window.console&&console.log("exception occured when checking element "+a.id+", check the '"+f.method+"' method",h);throw h;}}if(!d){this.objectLength(b)&&this.successList.push(a);return true}},customMetaMessage:function(a,b){if(c.metadata){var d=this.settings.meta?c(a).metadata()[this.settings.meta]:c(a).metadata();return d&&d.messages&&d.messages[b]}},customMessage:function(a,b){var d=this.settings.messages[a];return d&&(d.constructor==String?d:d[b])},findDefined:function(){for(var a=0;a<arguments.length;a++)if(arguments[a]!==
|
||||
undefined)return arguments[a]},defaultMessage:function(a,b){return this.findDefined(this.customMessage(a.name,b),this.customMetaMessage(a,b),!this.settings.ignoreTitle&&a.title||undefined,c.validator.messages[b],"<strong>Warning: No message defined for "+a.name+"</strong>")},formatAndAdd:function(a,b){var d=this.defaultMessage(a,b.method),e=/\$?\{(\d+)\}/g;if(typeof d=="function")d=d.call(this,b.parameters,a);else if(e.test(d))d=jQuery.format(d.replace(e,"{$1}"),b.parameters);this.errorList.push({message:d,
|
||||
element:a});this.errorMap[a.name]=d;this.submitted[a.name]=d},addWrapper:function(a){if(this.settings.wrapper)a=a.add(a.parent(this.settings.wrapper));return a},defaultShowErrors:function(){for(var a=0;this.errorList[a];a++){var b=this.errorList[a];this.settings.highlight&&this.settings.highlight.call(this,b.element,this.settings.errorClass,this.settings.validClass);this.showLabel(b.element,b.message)}if(this.errorList.length)this.toShow=this.toShow.add(this.containers);if(this.settings.success)for(a=
|
||||
0;this.successList[a];a++)this.showLabel(this.successList[a]);if(this.settings.unhighlight){a=0;for(b=this.validElements();b[a];a++)this.settings.unhighlight.call(this,b[a],this.settings.errorClass,this.settings.validClass)}this.toHide=this.toHide.not(this.toShow);this.hideErrors();this.addWrapper(this.toShow).show()},validElements:function(){return this.currentElements.not(this.invalidElements())},invalidElements:function(){return c(this.errorList).map(function(){return this.element})},showLabel:function(a,
|
||||
b){var d=this.errorsFor(a);if(d.length){d.removeClass().addClass(this.settings.errorClass);d.attr("generated")&&d.html(b)}else{d=c("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(a),generated:true}).addClass(this.settings.errorClass).html(b||"");if(this.settings.wrapper)d=d.hide().show().wrap("<"+this.settings.wrapper+"/>").parent();this.labelContainer.append(d).length||(this.settings.errorPlacement?this.settings.errorPlacement(d,c(a)):d.insertAfter(a))}if(!b&&this.settings.success){d.text("");
|
||||
typeof this.settings.success=="string"?d.addClass(this.settings.success):this.settings.success(d)}this.toShow=this.toShow.add(d)},errorsFor:function(a){var b=this.idOrName(a);return this.errors().filter(function(){return c(this).attr("for")==b})},idOrName:function(a){return this.groups[a.name]||(this.checkable(a)?a.name:a.id||a.name)},checkable:function(a){return/radio|checkbox/i.test(a.type)},findByName:function(a){var b=this.currentForm;return c(document.getElementsByName(a)).map(function(d,e){return e.form==
|
||||
b&&e.name==a&&e||null})},getLength:function(a,b){switch(b.nodeName.toLowerCase()){case "select":return c("option:selected",b).length;case "input":if(this.checkable(b))return this.findByName(b.name).filter(":checked").length}return a.length},depend:function(a,b){return this.dependTypes[typeof a]?this.dependTypes[typeof a](a,b):true},dependTypes:{"boolean":function(a){return a},string:function(a,b){return!!c(a,b.form).length},"function":function(a,b){return a(b)}},optional:function(a){return!c.validator.methods.required.call(this,
|
||||
c.trim(a.value),a)&&"dependency-mismatch"},startRequest:function(a){if(!this.pending[a.name]){this.pendingRequest++;this.pending[a.name]=true}},stopRequest:function(a,b){this.pendingRequest--;if(this.pendingRequest<0)this.pendingRequest=0;delete this.pending[a.name];if(b&&this.pendingRequest==0&&this.formSubmitted&&this.form()){c(this.currentForm).submit();this.formSubmitted=false}else if(!b&&this.pendingRequest==0&&this.formSubmitted){c(this.currentForm).triggerHandler("invalid-form",[this]);this.formSubmitted=
|
||||
false}},previousValue:function(a){return c.data(a,"previousValue")||c.data(a,"previousValue",{old:null,valid:true,message:this.defaultMessage(a,"remote")})}},classRuleSettings:{required:{required:true},email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(a,b){a.constructor==String?this.classRuleSettings[a]=b:c.extend(this.classRuleSettings,
|
||||
a)},classRules:function(a){var b={};(a=c(a).attr("class"))&&c.each(a.split(" "),function(){this in c.validator.classRuleSettings&&c.extend(b,c.validator.classRuleSettings[this])});return b},attributeRules:function(a){var b={};a=c(a);for(var d in c.validator.methods){var e=a.attr(d);if(e)b[d]=e}b.maxlength&&/-1|2147483647|524288/.test(b.maxlength)&&delete b.maxlength;return b},metadataRules:function(a){if(!c.metadata)return{};var b=c.data(a.form,"validator").settings.meta;return b?c(a).metadata()[b]:
|
||||
c(a).metadata()},staticRules:function(a){var b={},d=c.data(a.form,"validator");if(d.settings.rules)b=c.validator.normalizeRule(d.settings.rules[a.name])||{};return b},normalizeRules:function(a,b){c.each(a,function(d,e){if(e===false)delete a[d];else if(e.param||e.depends){var f=true;switch(typeof e.depends){case "string":f=!!c(e.depends,b.form).length;break;case "function":f=e.depends.call(b,b)}if(f)a[d]=e.param!==undefined?e.param:true;else delete a[d]}});c.each(a,function(d,e){a[d]=c.isFunction(e)?
|
||||
e(b):e});c.each(["minlength","maxlength","min","max"],function(){if(a[this])a[this]=Number(a[this])});c.each(["rangelength","range"],function(){if(a[this])a[this]=[Number(a[this][0]),Number(a[this][1])]});if(c.validator.autoCreateRanges){if(a.min&&a.max){a.range=[a.min,a.max];delete a.min;delete a.max}if(a.minlength&&a.maxlength){a.rangelength=[a.minlength,a.maxlength];delete a.minlength;delete a.maxlength}}a.messages&&delete a.messages;return a},normalizeRule:function(a){if(typeof a=="string"){var b=
|
||||
{};c.each(a.split(/\s/),function(){b[this]=true});a=b}return a},addMethod:function(a,b,d){c.validator.methods[a]=b;c.validator.messages[a]=d!=undefined?d:c.validator.messages[a];b.length<3&&c.validator.addClassRules(a,c.validator.normalizeRule(a))},methods:{required:function(a,b,d){if(!this.depend(d,b))return"dependency-mismatch";switch(b.nodeName.toLowerCase()){case "select":return(a=c(b).val())&&a.length>0;case "input":if(this.checkable(b))return this.getLength(a,b)>0;default:return c.trim(a).length>
|
||||
0}},remote:function(a,b,d){if(this.optional(b))return"dependency-mismatch";var e=this.previousValue(b);this.settings.messages[b.name]||(this.settings.messages[b.name]={});e.originalMessage=this.settings.messages[b.name].remote;this.settings.messages[b.name].remote=e.message;d=typeof d=="string"&&{url:d}||d;if(this.pending[b.name])return"pending";if(e.old===a)return e.valid;e.old=a;var f=this;this.startRequest(b);var g={};g[b.name]=a;c.ajax(c.extend(true,{url:d,mode:"abort",port:"validate"+b.name,
|
||||
dataType:"json",data:g,success:function(h){f.settings.messages[b.name].remote=e.originalMessage;var j=h===true;if(j){var i=f.formSubmitted;f.prepareElement(b);f.formSubmitted=i;f.successList.push(b);f.showErrors()}else{i={};h=h||f.defaultMessage(b,"remote");i[b.name]=e.message=c.isFunction(h)?h(a):h;f.showErrors(i)}e.valid=j;f.stopRequest(b,j)}},d));return"pending"},minlength:function(a,b,d){return this.optional(b)||this.getLength(c.trim(a),b)>=d},maxlength:function(a,b,d){return this.optional(b)||
|
||||
this.getLength(c.trim(a),b)<=d},rangelength:function(a,b,d){a=this.getLength(c.trim(a),b);return this.optional(b)||a>=d[0]&&a<=d[1]},min:function(a,b,d){return this.optional(b)||a>=d},max:function(a,b,d){return this.optional(b)||a<=d},range:function(a,b,d){return this.optional(b)||a>=d[0]&&a<=d[1]},email:function(a,b){return this.optional(b)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(a)},
|
||||
url:function(a,b){return this.optional(b)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(a)},
|
||||
date:function(a,b){return this.optional(b)||!/Invalid|NaN/.test(new Date(a))},dateISO:function(a,b){return this.optional(b)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(a)},digits:function(a,b){return this.optional(b)||/^\d+$/.test(a)},creditcard:function(a,b){if(this.optional(b))return"dependency-mismatch";if(/[^0-9-]+/.test(a))return false;var d=0,e=0,f=false;a=a.replace(/\D/g,"");for(var g=a.length-1;g>=
|
||||
0;g--){e=a.charAt(g);e=parseInt(e,10);if(f)if((e*=2)>9)e-=9;d+=e;f=!f}return d%10==0},accept:function(a,b,d){d=typeof d=="string"?d.replace(/,/g,"|"):"png|jpe?g|gif";return this.optional(b)||a.match(RegExp(".("+d+")$","i"))},equalTo:function(a,b,d){d=c(d).unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){c(b).valid()});return a==d.val()}}});c.format=c.validator.format})(jQuery);
|
||||
(function(c){var a={};if(c.ajaxPrefilter)c.ajaxPrefilter(function(d,e,f){e=d.port;if(d.mode=="abort"){a[e]&&a[e].abort();a[e]=f}});else{var b=c.ajax;c.ajax=function(d){var e=("port"in d?d:c.ajaxSettings).port;if(("mode"in d?d:c.ajaxSettings).mode=="abort"){a[e]&&a[e].abort();return a[e]=b.apply(this,arguments)}return b.apply(this,arguments)}}})(jQuery);
|
||||
(function(c){!jQuery.event.special.focusin&&!jQuery.event.special.focusout&&document.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(e){e=c.event.fix(e);e.type=b;return c.event.handle.call(this,e)}c.event.special[b]={setup:function(){this.addEventListener(a,d,true)},teardown:function(){this.removeEventListener(a,d,true)},handler:function(e){arguments[0]=c.event.fix(e);arguments[0].type=b;return c.event.handle.apply(this,arguments)}}});c.extend(c.fn,{validateDelegate:function(a,
|
||||
b,d){return this.bind(b,function(e){var f=c(e.target);if(f.is(a))return d.apply(f,arguments)})}})})(jQuery);
|
Binary file not shown.
BIN
packages/jQuery.vsdoc.1.5.2/jQuery.vsdoc.1.5.2.nupkg
vendored
BIN
packages/jQuery.vsdoc.1.5.2/jQuery.vsdoc.1.5.2.nupkg
vendored
Binary file not shown.
BIN
packages/jQuery.vsdoc.1.6/jQuery.vsdoc.1.6.nupkg
vendored
Normal file
BIN
packages/jQuery.vsdoc.1.6/jQuery.vsdoc.1.6.nupkg
vendored
Normal file
Binary file not shown.
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<repositories>
|
||||
<repository path="..\NzbDrone.Web\packages.config" />
|
||||
<repository path="..\NzbDrone.Core\packages.config" />
|
||||
<repository path="..\NzbDrone.Core.Test\packages.config" />
|
||||
<repository path="..\NzbDrone.Core\packages.config" />
|
||||
</repositories>
|
Loading…
Add table
Add a link
Reference in a new issue