public DependencyAttribute (
     String   dependentAssemblyArgument,
     LoadHint loadHintArgument
     )
 {
     dependentAssembly     = dependentAssemblyArgument;
     loadHint              = loadHintArgument;
 }
 public DependencyAttribute(
     String dependentAssemblyArgument,
     LoadHint loadHintArgument
     )
 {
     dependentAssembly = dependentAssemblyArgument;
     loadHint          = loadHintArgument;
 }
	// Constructors
	public DependencyAttribute(string dependentAssemblyArgument, LoadHint loadHintArgument) {}
		public DefaultDependencyAttribute(LoadHint loadHintArgument) {
			hint = loadHintArgument;
		}
 /// <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.DependencyAttribute" /> class with the specified <see cref="T:System.Runtime.CompilerServices.LoadHint" /> value. </summary>
 /// <param name="dependentAssemblyArgument">The dependent assembly to bind to.</param>
 /// <param name="loadHintArgument">One of the <see cref="T:System.Runtime.CompilerServices.LoadHint" /> values.</param>
 // Token: 0x06005CA2 RID: 23714 RVA: 0x00144D86 File Offset: 0x00142F86
 public DependencyAttribute(string dependentAssemblyArgument, LoadHint loadHintArgument)
 {
     this.dependentAssembly = dependentAssemblyArgument;
     this.loadHint          = loadHintArgument;
 }
 public DefaultDependencyAttribute(
     LoadHint loadHintArgument
     )
 {
     loadHint = loadHintArgument;
 }
	// Constructors.
	public DependencyAttribute(String dependentAssemblyAttribute,
							   LoadHint loadHintArgument)
			{
				this.dependentAssembly = dependentAssemblyAttribute;
				this.loadHint = loadHintArgument;
			}
Esempio n. 8
0
 public DependencyAttribute(string dependentAssemblyArgument, LoadHint loadHintArgument)
 {
 }
Esempio n. 9
0
 /// <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.DependencyAttribute" /> class with the specified <see cref="T:System.Runtime.CompilerServices.LoadHint" /> value. </summary><param name="dependentAssemblyArgument">The dependent assembly to bind to.</param><param name="loadHintArgument">One of the <see cref="T:System.Runtime.CompilerServices.LoadHint" /> values.</param>
 public DependencyAttribute(string dependentAssemblyArgument, LoadHint loadHintArgument)
 {
     throw new NotImplementedException();
 }
 /// <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.DefaultDependencyAttribute" /> class with the specified <see cref="T:System.Runtime.CompilerServices.LoadHint" /> binding. </summary><param name="loadHintArgument">One of the <see cref="T:System.Runtime.CompilerServices.LoadHint" /> values that indicates the default binding preference.</param>
 public DefaultDependencyAttribute(LoadHint loadHintArgument)
 {
     throw new NotImplementedException();
 }