Ejemplo n.º 1
0
		public ServiceCatalog(IServiceCatalogImplementation implementation)
		{
			if (implementation == null)
			{
				throw new ArgumentNullException("implementation");
			}
			this.implementation = implementation;
		}
Ejemplo n.º 2
0
 public ServiceCatalog(IServiceCatalogImplementation implementation)
 {
     if (implementation == null)
     {
         throw new ArgumentNullException("implementation");
     }
     this.implementation = implementation;
 }
		public AdHocServiceCatalogDiscovery(IServiceCatalogImplementation serviceCatalog)
		{
			this.serviceCatalog = serviceCatalog;
		}
		public AdHocServiceCatalogProbe(IServiceCatalogImplementation serviceCatalog)
		{
			this.serviceCatalog = serviceCatalog;
			filters = new List<Func<EndpointDiscoveryMetadata, bool>>();
		}
Ejemplo n.º 5
0
 public AdHocServiceCatalogProbe(IServiceCatalogImplementation serviceCatalog)
 {
     this.serviceCatalog = serviceCatalog;
     filters             = new List <Func <EndpointDiscoveryMetadata, bool> >();
 }
 public AdHocServiceCatalogDiscovery(IServiceCatalogImplementation serviceCatalog)
 {
     this.serviceCatalog = serviceCatalog;
 }