├── .gitattributes ├── .gitignore ├── DataContractSample ├── DataContractSample.sln └── Service │ ├── Properties │ └── AssemblyInfo.cs │ ├── Service.cs │ ├── Service.csproj │ ├── Service.svc │ └── Web.config ├── Hosting ├── ClientWCF │ ├── App.config │ ├── Client.cs │ ├── ClientWCF.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Hosting.sln └── ServiceWCF │ ├── App.config │ ├── Properties │ └── AssemblyInfo.cs │ ├── Service.cs │ └── ServiceWCF.csproj ├── README.md ├── ServiceInSecond ├── Client │ ├── App.config │ ├── Client.csproj │ ├── Connected Services │ │ └── ServiceReference1 │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── WcfService.xsd │ │ │ ├── configuration.svcinfo │ │ │ ├── configuration91.svcinfo │ │ │ ├── service.wsdl │ │ │ ├── service.xsd │ │ │ └── service1.xsd │ ├── IService1.cs │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── DataSources │ │ └── WcfService.CompositeType.datasource ├── ServiceInSecond.sln └── WcfService │ ├── App.config │ ├── IService1.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Service1.cs │ └── WcfService.csproj ├── SimpleProjects ├── Client │ ├── App.config │ ├── Client.cs │ ├── Client.csproj │ ├── Connected Services │ │ └── ServiceReference1 │ │ │ ├── Client.ServiceReference1.CompositeType.datasource │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── Service2.xsd │ │ │ ├── configuration.svcinfo │ │ │ ├── configuration91.svcinfo │ │ │ ├── service.wsdl │ │ │ ├── service.xsd │ │ │ └── service1.xsd │ └── Properties │ │ └── AssemblyInfo.cs ├── Clients │ ├── App.config │ ├── Clients.csproj │ ├── Connected Services │ │ └── ServiceReference1 │ │ │ ├── Clients.ServiceReference1.CompositeType.datasource │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── Service2.xsd │ │ │ ├── configuration.svcinfo │ │ │ ├── configuration91.svcinfo │ │ │ ├── service.wsdl │ │ │ ├── service.xsd │ │ │ └── service1.xsd │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Service │ ├── App.config │ ├── IContract.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service.cs │ └── Service.csproj └── SimpleProjects.sln ├── WCFoverloading ├── Client │ ├── App.config │ ├── Client.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── WCFoverloading.sln └── WCFoverloading │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Server.csproj │ └── Service.cs ├── WPFbindWCFbindAPI ├── WCF │ ├── App.config │ ├── IService1.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service1.cs │ └── WCF.csproj ├── WPFbindWCFbindAPI.sln ├── WPFsimple │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── WPFsimple.csproj │ └── packages.config └── WebApp │ ├── App_Start │ └── WebApiConfig.cs │ ├── Connected Services │ └── ServiceReference1 │ │ ├── Reference.cs │ │ ├── Reference.svcmap │ │ ├── WCF.xsd │ │ ├── WebApp.ServiceReference1.CompositeType.datasource │ │ ├── configuration.svcinfo │ │ ├── configuration91.svcinfo │ │ ├── service.wsdl │ │ ├── service.xsd │ │ └── service1.xsd │ ├── Controllers │ └── MainController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── WebApp.csproj │ └── packages.config ├── WPFbindingWCF ├── WCF │ ├── App.config │ ├── IService1.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service1.cs │ └── WCF.csproj ├── WPF │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── WPF.csproj └── WPFbindingWCF.sln └── WPFfirstSteps ├── Client ├── Client.cs ├── Client.csproj ├── IContract.cs └── Properties │ └── AssemblyInfo.cs ├── Server ├── IContract.cs ├── Properties │ └── AssemblyInfo.cs ├── Server.cs ├── Server.csproj └── Service.cs └── WPFfirstSteps.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/.gitignore -------------------------------------------------------------------------------- /DataContractSample/DataContractSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/DataContractSample/DataContractSample.sln -------------------------------------------------------------------------------- /DataContractSample/Service/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/DataContractSample/Service/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DataContractSample/Service/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/DataContractSample/Service/Service.cs -------------------------------------------------------------------------------- /DataContractSample/Service/Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/DataContractSample/Service/Service.csproj -------------------------------------------------------------------------------- /DataContractSample/Service/Service.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/DataContractSample/Service/Service.svc -------------------------------------------------------------------------------- /DataContractSample/Service/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/DataContractSample/Service/Web.config -------------------------------------------------------------------------------- /Hosting/ClientWCF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/Hosting/ClientWCF/App.config -------------------------------------------------------------------------------- /Hosting/ClientWCF/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/Hosting/ClientWCF/Client.cs -------------------------------------------------------------------------------- /Hosting/ClientWCF/ClientWCF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/Hosting/ClientWCF/ClientWCF.csproj -------------------------------------------------------------------------------- /Hosting/ClientWCF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/Hosting/ClientWCF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Hosting/Hosting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/Hosting/Hosting.sln -------------------------------------------------------------------------------- /Hosting/ServiceWCF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/Hosting/ServiceWCF/App.config -------------------------------------------------------------------------------- /Hosting/ServiceWCF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/Hosting/ServiceWCF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Hosting/ServiceWCF/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/Hosting/ServiceWCF/Service.cs -------------------------------------------------------------------------------- /Hosting/ServiceWCF/ServiceWCF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/Hosting/ServiceWCF/ServiceWCF.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/README.md -------------------------------------------------------------------------------- /ServiceInSecond/Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/App.config -------------------------------------------------------------------------------- /ServiceInSecond/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/Client.csproj -------------------------------------------------------------------------------- /ServiceInSecond/Client/Connected Services/ServiceReference1/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/Connected Services/ServiceReference1/Reference.cs -------------------------------------------------------------------------------- /ServiceInSecond/Client/Connected Services/ServiceReference1/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/Connected Services/ServiceReference1/Reference.svcmap -------------------------------------------------------------------------------- /ServiceInSecond/Client/Connected Services/ServiceReference1/WcfService.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/Connected Services/ServiceReference1/WcfService.xsd -------------------------------------------------------------------------------- /ServiceInSecond/Client/Connected Services/ServiceReference1/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/Connected Services/ServiceReference1/configuration.svcinfo -------------------------------------------------------------------------------- /ServiceInSecond/Client/Connected Services/ServiceReference1/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/Connected Services/ServiceReference1/configuration91.svcinfo -------------------------------------------------------------------------------- /ServiceInSecond/Client/Connected Services/ServiceReference1/service.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/Connected Services/ServiceReference1/service.wsdl -------------------------------------------------------------------------------- /ServiceInSecond/Client/Connected Services/ServiceReference1/service.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/Connected Services/ServiceReference1/service.xsd -------------------------------------------------------------------------------- /ServiceInSecond/Client/Connected Services/ServiceReference1/service1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/Connected Services/ServiceReference1/service1.xsd -------------------------------------------------------------------------------- /ServiceInSecond/Client/IService1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/IService1.cs -------------------------------------------------------------------------------- /ServiceInSecond/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/Program.cs -------------------------------------------------------------------------------- /ServiceInSecond/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ServiceInSecond/Client/Properties/DataSources/WcfService.CompositeType.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/Client/Properties/DataSources/WcfService.CompositeType.datasource -------------------------------------------------------------------------------- /ServiceInSecond/ServiceInSecond.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/ServiceInSecond.sln -------------------------------------------------------------------------------- /ServiceInSecond/WcfService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/WcfService/App.config -------------------------------------------------------------------------------- /ServiceInSecond/WcfService/IService1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/WcfService/IService1.cs -------------------------------------------------------------------------------- /ServiceInSecond/WcfService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/WcfService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ServiceInSecond/WcfService/Service1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/WcfService/Service1.cs -------------------------------------------------------------------------------- /ServiceInSecond/WcfService/WcfService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/ServiceInSecond/WcfService/WcfService.csproj -------------------------------------------------------------------------------- /SimpleProjects/Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/App.config -------------------------------------------------------------------------------- /SimpleProjects/Client/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/Client.cs -------------------------------------------------------------------------------- /SimpleProjects/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/Client.csproj -------------------------------------------------------------------------------- /SimpleProjects/Client/Connected Services/ServiceReference1/Client.ServiceReference1.CompositeType.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/Connected Services/ServiceReference1/Client.ServiceReference1.CompositeType.datasource -------------------------------------------------------------------------------- /SimpleProjects/Client/Connected Services/ServiceReference1/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/Connected Services/ServiceReference1/Reference.cs -------------------------------------------------------------------------------- /SimpleProjects/Client/Connected Services/ServiceReference1/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/Connected Services/ServiceReference1/Reference.svcmap -------------------------------------------------------------------------------- /SimpleProjects/Client/Connected Services/ServiceReference1/Service2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/Connected Services/ServiceReference1/Service2.xsd -------------------------------------------------------------------------------- /SimpleProjects/Client/Connected Services/ServiceReference1/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/Connected Services/ServiceReference1/configuration.svcinfo -------------------------------------------------------------------------------- /SimpleProjects/Client/Connected Services/ServiceReference1/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/Connected Services/ServiceReference1/configuration91.svcinfo -------------------------------------------------------------------------------- /SimpleProjects/Client/Connected Services/ServiceReference1/service.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/Connected Services/ServiceReference1/service.wsdl -------------------------------------------------------------------------------- /SimpleProjects/Client/Connected Services/ServiceReference1/service.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/Connected Services/ServiceReference1/service.xsd -------------------------------------------------------------------------------- /SimpleProjects/Client/Connected Services/ServiceReference1/service1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/Connected Services/ServiceReference1/service1.xsd -------------------------------------------------------------------------------- /SimpleProjects/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleProjects/Clients/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/App.config -------------------------------------------------------------------------------- /SimpleProjects/Clients/Clients.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/Clients.csproj -------------------------------------------------------------------------------- /SimpleProjects/Clients/Connected Services/ServiceReference1/Clients.ServiceReference1.CompositeType.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/Connected Services/ServiceReference1/Clients.ServiceReference1.CompositeType.datasource -------------------------------------------------------------------------------- /SimpleProjects/Clients/Connected Services/ServiceReference1/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/Connected Services/ServiceReference1/Reference.cs -------------------------------------------------------------------------------- /SimpleProjects/Clients/Connected Services/ServiceReference1/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/Connected Services/ServiceReference1/Reference.svcmap -------------------------------------------------------------------------------- /SimpleProjects/Clients/Connected Services/ServiceReference1/Service2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/Connected Services/ServiceReference1/Service2.xsd -------------------------------------------------------------------------------- /SimpleProjects/Clients/Connected Services/ServiceReference1/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/Connected Services/ServiceReference1/configuration.svcinfo -------------------------------------------------------------------------------- /SimpleProjects/Clients/Connected Services/ServiceReference1/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/Connected Services/ServiceReference1/configuration91.svcinfo -------------------------------------------------------------------------------- /SimpleProjects/Clients/Connected Services/ServiceReference1/service.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/Connected Services/ServiceReference1/service.wsdl -------------------------------------------------------------------------------- /SimpleProjects/Clients/Connected Services/ServiceReference1/service.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/Connected Services/ServiceReference1/service.xsd -------------------------------------------------------------------------------- /SimpleProjects/Clients/Connected Services/ServiceReference1/service1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/Connected Services/ServiceReference1/service1.xsd -------------------------------------------------------------------------------- /SimpleProjects/Clients/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/Program.cs -------------------------------------------------------------------------------- /SimpleProjects/Clients/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Clients/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleProjects/Service/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Service/App.config -------------------------------------------------------------------------------- /SimpleProjects/Service/IContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Service/IContract.cs -------------------------------------------------------------------------------- /SimpleProjects/Service/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Service/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleProjects/Service/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Service/Service.cs -------------------------------------------------------------------------------- /SimpleProjects/Service/Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/Service/Service.csproj -------------------------------------------------------------------------------- /SimpleProjects/SimpleProjects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/SimpleProjects/SimpleProjects.sln -------------------------------------------------------------------------------- /WCFoverloading/Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WCFoverloading/Client/App.config -------------------------------------------------------------------------------- /WCFoverloading/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WCFoverloading/Client/Client.csproj -------------------------------------------------------------------------------- /WCFoverloading/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WCFoverloading/Client/Program.cs -------------------------------------------------------------------------------- /WCFoverloading/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WCFoverloading/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WCFoverloading/WCFoverloading.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WCFoverloading/WCFoverloading.sln -------------------------------------------------------------------------------- /WCFoverloading/WCFoverloading/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WCFoverloading/WCFoverloading/App.config -------------------------------------------------------------------------------- /WCFoverloading/WCFoverloading/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WCFoverloading/WCFoverloading/Program.cs -------------------------------------------------------------------------------- /WCFoverloading/WCFoverloading/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WCFoverloading/WCFoverloading/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WCFoverloading/WCFoverloading/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WCFoverloading/WCFoverloading/Server.csproj -------------------------------------------------------------------------------- /WCFoverloading/WCFoverloading/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WCFoverloading/WCFoverloading/Service.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WCF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WCF/App.config -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WCF/IService1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WCF/IService1.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WCF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WCF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WCF/Service1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WCF/Service1.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WCF/WCF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WCF/WCF.csproj -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFbindWCFbindAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFbindWCFbindAPI.sln -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFsimple/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFsimple/App.config -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFsimple/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFsimple/App.xaml -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFsimple/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFsimple/App.xaml.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFsimple/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFsimple/MainWindow.xaml -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFsimple/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFsimple/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFsimple/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFsimple/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFsimple/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFsimple/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFsimple/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFsimple/Properties/Resources.resx -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFsimple/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFsimple/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFsimple/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFsimple/Properties/Settings.settings -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFsimple/WPFsimple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFsimple/WPFsimple.csproj -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WPFsimple/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WPFsimple/packages.config -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/Reference.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/Reference.svcmap -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/WCF.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/WCF.xsd -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/WebApp.ServiceReference1.CompositeType.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/WebApp.ServiceReference1.CompositeType.datasource -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/configuration.svcinfo -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/configuration91.svcinfo -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/service.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/service.wsdl -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/service.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/service.xsd -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/service1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Connected Services/ServiceReference1/service1.xsd -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Controllers/MainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Controllers/MainController.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Global.asax -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Global.asax.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Web.Debug.config -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Web.Release.config -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/Web.config -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/WebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/WebApp.csproj -------------------------------------------------------------------------------- /WPFbindWCFbindAPI/WebApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindWCFbindAPI/WebApp/packages.config -------------------------------------------------------------------------------- /WPFbindingWCF/WCF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WCF/App.config -------------------------------------------------------------------------------- /WPFbindingWCF/WCF/IService1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WCF/IService1.cs -------------------------------------------------------------------------------- /WPFbindingWCF/WCF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WCF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPFbindingWCF/WCF/Service1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WCF/Service1.cs -------------------------------------------------------------------------------- /WPFbindingWCF/WCF/WCF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WCF/WCF.csproj -------------------------------------------------------------------------------- /WPFbindingWCF/WPF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WPF/App.config -------------------------------------------------------------------------------- /WPFbindingWCF/WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WPF/App.xaml -------------------------------------------------------------------------------- /WPFbindingWCF/WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WPF/App.xaml.cs -------------------------------------------------------------------------------- /WPFbindingWCF/WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WPF/MainWindow.xaml -------------------------------------------------------------------------------- /WPFbindingWCF/WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPFbindingWCF/WPF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WPF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPFbindingWCF/WPF/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WPF/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPFbindingWCF/WPF/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WPF/Properties/Resources.resx -------------------------------------------------------------------------------- /WPFbindingWCF/WPF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WPF/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPFbindingWCF/WPF/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WPF/Properties/Settings.settings -------------------------------------------------------------------------------- /WPFbindingWCF/WPF/WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WPF/WPF.csproj -------------------------------------------------------------------------------- /WPFbindingWCF/WPFbindingWCF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFbindingWCF/WPFbindingWCF.sln -------------------------------------------------------------------------------- /WPFfirstSteps/Client/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFfirstSteps/Client/Client.cs -------------------------------------------------------------------------------- /WPFfirstSteps/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFfirstSteps/Client/Client.csproj -------------------------------------------------------------------------------- /WPFfirstSteps/Client/IContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFfirstSteps/Client/IContract.cs -------------------------------------------------------------------------------- /WPFfirstSteps/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFfirstSteps/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPFfirstSteps/Server/IContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFfirstSteps/Server/IContract.cs -------------------------------------------------------------------------------- /WPFfirstSteps/Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFfirstSteps/Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPFfirstSteps/Server/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFfirstSteps/Server/Server.cs -------------------------------------------------------------------------------- /WPFfirstSteps/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFfirstSteps/Server/Server.csproj -------------------------------------------------------------------------------- /WPFfirstSteps/Server/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFfirstSteps/Server/Service.cs -------------------------------------------------------------------------------- /WPFfirstSteps/WPFfirstSteps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VanHakobyan/WCFprojects/HEAD/WPFfirstSteps/WPFfirstSteps.sln --------------------------------------------------------------------------------