Пример #1
0
        public endpoint EndpointInfo(int index)
        {
            endpoint ep = null;

            if (index >= 0 && index < _endpointList.Count)
            {
                ep = _endpointList[index];
            }

            return(ep);
        }
Пример #2
0
 public ProxyStatusControl(int index,
                           endpoint endpoint,
                           SmartProxyController proxycontroller,
                           ImageList imagelist)
     : this()
 {
     _index = index;
     textBoxAddress.Text = endpoint.address;
     _proxycontroller    = proxycontroller;
     _imagelist          = imagelist;
     proxycontroller.ControllerStatusChanged += new EventHandler(OnControllerStatusChanged);
     _backcolor = this.BackColor;
 }
Пример #3
0
 5. You UI should grab the styles from this endpoint then instead of an file
 get => purviewEntities ??= new PurviewEntities(Pipeline, _clientDiagnostics, endpoint, apiVersion);
Пример #5
0
        protected override IChannel CreateProxy(endpoint endpoint)
        {
            var channelfactory = new ChannelFactory <SampleManagementServiceSoap>(WcfBindingFactory(endpoint.binding, endpoint.bindingConfiguration), new EndpointAddress(endpoint.address));

            return(channelfactory.CreateChannel() as IChannel);
        }
Пример #6
0
        protected override IChannel CreateProxy(endpoint endpoint)
        {
            var channelfactory = new ChannelFactory <ISampleSubmission>(WcfBindingFactory(endpoint.binding, endpoint.bindingConfiguration), new EndpointAddress(endpoint.address));

            return(channelfactory.CreateChannel() as IChannel);
        }
Пример #7
0
 return $"{baseUrl}{(endpoint.StartsWith("/") ? endpoint : $"/{endpoint}")}";
Пример #8
0
 public Task PagingCustomUrlPartialNextLink() => Test(async(endpoint, pipeline) =>
 {
Пример #9
0
 abstract protected IChannel CreateProxy(endpoint endpoint);