コード例 #1
0
 public DependencyBundleLoader(IDependentBundleConstraint requireConstraintMetadata, IBundleLoader ownerLoader) : base(ownerLoader)
 {
     if (requireConstraintMetadata == null)
     {
         throw new ArgumentNullException();
     }
     Dependency = requireConstraintMetadata;
 }
コード例 #2
0
 public DependentBundleConstraintNode(IResolver resolver, Interface2 owner, IDependentBundleConstraint constraint) : base(resolver, owner, constraint)
 {
     this.BundleSymbolicName = constraint.BundleSymbolicName;
     this.BundleVersion      = constraint.BundleVersion;
     this.Resolution         = constraint.Resolution;
 }