/// <summary>
		/// Initializes a new instance of the <see cref="DynamicActionProviderDescriptor"/> class.
		/// </summary>
		/// <param name="dynamicActionProviderType">Type of the provider.</param>
		/// <param name="attribute">The attribute.</param>
		public DynamicActionProviderDescriptor(Type dynamicActionProviderType, DynamicActionProviderAttribute attribute)
		{
			this.dynamicActionProviderType = dynamicActionProviderType;
			this.attribute = attribute;
		}
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DynamicActionProviderDescriptor"/> class.
 /// </summary>
 /// <param name="dynamicActionProviderType">Type of the provider.</param>
 /// <param name="attribute">The attribute.</param>
 public DynamicActionProviderDescriptor(Type dynamicActionProviderType, DynamicActionProviderAttribute attribute)
 {
     this.dynamicActionProviderType = dynamicActionProviderType;
     this.attribute = attribute;
 }