├── BetRayer.v1.0
├── README.md
├── WpfHosting
│ ├── App.config
│ ├── App.xaml.cs
│ ├── Properties
│ │ ├── Settings.settings
│ │ ├── Settings.Designer.cs
│ │ ├── AssemblyInfo.cs
│ │ └── Resources.Designer.cs
│ ├── App.xaml
│ └── MainWindow.xaml
├── WpfHost
│ ├── App.config
│ ├── Properties
│ │ ├── Settings.settings
│ │ ├── Settings.Designer.cs
│ │ ├── AssemblyInfo.cs
│ │ └── Resources.Designer.cs
│ ├── App.xaml
│ ├── App.xaml.cs
│ └── MainWindow.xaml
├── WpfClient
│ ├── App.config
│ ├── Properties
│ │ ├── Settings.settings
│ │ ├── Settings.Designer.cs
│ │ ├── AssemblyInfo.cs
│ │ └── Resources.Designer.cs
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── MainWindow.xaml
│ └── MainWindow.xaml.cs
├── ConsoleHosting
│ ├── App.config
│ ├── Program.cs
│ └── Properties
│ │ └── AssemblyInfo.cs
├── ServiceAssembly
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── ServiceAssembly.csproj
└── BetRayer.v1.0.sln
├── CRUD For File System(WPF to WEB.API)
├── README.md
├── REST For FileSystem API
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── App_Start
│ │ └── WebApiConfig.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Controllers
│ │ └── DirectoryController.cs
├── File Manipulator WPF
│ ├── App.config
│ ├── Properties
│ │ ├── Settings.settings
│ │ ├── Settings.Designer.cs
│ │ ├── AssemblyInfo.cs
│ │ └── Resources.Designer.cs
│ ├── App.xaml.cs
│ ├── App.xaml
│ └── MainWindow.xaml
└── CRUD For File System(WPF to WEB.API).sln
├── BetRayerChatTCP.v1.1
├── 1.jpg
├── WCF_WPF_ServiceTCP
│ ├── packages.config
│ ├── App.config
│ ├── Properties
│ │ ├── Settings.settings
│ │ ├── Settings.Designer.cs
│ │ ├── AssemblyInfo.cs
│ │ └── Resources.Designer.cs
│ ├── App.xaml.cs
│ ├── App.xaml
│ └── MainWindow.xaml
├── WpfClient(CallBack)
│ ├── App.config
│ ├── Properties
│ │ ├── Settings.settings
│ │ ├── Settings.Designer.cs
│ │ ├── AssemblyInfo.cs
│ │ └── Resources.Designer.cs
│ ├── App.xaml.cs
│ ├── App.xaml
│ ├── PrivateMessWindow.xaml.cs
│ └── PrivateMessWindow.xaml
├── README.md
├── ServiceClassLibrary
│ ├── IChat.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── ServiceClassLibrary.csproj
└── BetRayerChatTCP.v1.1.sln
├── SignalR Solutions
├── SignalRChatMVC
│ ├── Views
│ │ ├── _ViewStart.cshtml
│ │ ├── Home
│ │ │ ├── About.cshtml
│ │ │ ├── Contact.cshtml
│ │ │ ├── Index.cshtml
│ │ │ └── Chat.cshtml
│ │ ├── Shared
│ │ │ ├── Error.cshtml
│ │ │ └── _Layout.cshtml
│ │ └── Web.config
│ ├── Global.asax
│ ├── favicon.ico
│ ├── Scripts
│ │ └── _references.js
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── App_Start
│ │ ├── FilterConfig.cs
│ │ ├── RouteConfig.cs
│ │ └── BundleConfig.cs
│ ├── Startup.cs
│ ├── Hubs
│ │ └── ChatHub.cs
│ ├── Content
│ │ └── Site.css
│ ├── Global.asax.cs
│ ├── Controllers
│ │ └── HomeController.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── packages.config
├── SignalRChat
│ ├── ChatHub.cs
│ ├── Startup.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── packages.config
│ ├── Web.config
│ └── index.html
├── SignalRSelfHost
│ ├── App.config
│ ├── packages.config
│ ├── Program.cs
│ └── Properties
│ │ └── AssemblyInfo.cs
└── JavascriptClient
│ ├── packages.config
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── Web.config
│ └── Default.html
├── WPF_API_WCF_CRUD_For_Directory
├── README.md
├── WebApi_Client_For_WCF
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── Service References
│ │ └── ServiceReference1
│ │ │ ├── Arrays.xsd
│ │ │ ├── configuration.svcinfo
│ │ │ ├── Reference.svcmap
│ │ │ ├── service1.xsd
│ │ │ └── service.xsd
│ ├── App_Start
│ │ └── WebApiConfig.cs
│ ├── Controllers
│ │ └── MainController.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── packages.config
├── WPF_Client_For_Api
│ ├── App.config
│ ├── Properties
│ │ ├── Settings.settings
│ │ ├── Settings.Designer.cs
│ │ ├── AssemblyInfo.cs
│ │ └── Resources.Designer.cs
│ ├── packages.config
│ ├── App.xaml.cs
│ └── App.xaml
├── WCF_Server_For_API
│ ├── IServiceIO.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── App.config
│ └── FileIO_Service.cs
└── WPF_API_WCF_CRUD_For_Directory.sln
├── API For Graphics Plotting
├── GraphPlottinAPI
│ ├── Global.asax
│ ├── Models
│ │ ├── Point.cs
│ │ ├── RequestParameters.cs
│ │ └── GraphsCreator.cs
│ ├── Global.asax.cs
│ ├── App_Start
│ │ └── WebApiConfig.cs
│ ├── Controllers
│ │ └── PlotGraphController.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── packages.config
│ └── Properties
│ │ └── AssemblyInfo.cs
├── GraphPlotApiClientWPF
│ ├── Properties
│ │ ├── Settings.settings
│ │ ├── Settings.Designer.cs
│ │ ├── AssemblyInfo.cs
│ │ └── Resources.Designer.cs
│ ├── packages.config
│ ├── App.xaml.cs
│ ├── App.xaml
│ ├── RequestParameters.cs
│ └── App.config
├── README.md
└── API For Graphics Plotting.sln
├── README.md
└── .gitattributes
/BetRayer.v1.0/README.md:
--------------------------------------------------------------------------------
1 | # Not Comlited project
2 |
--------------------------------------------------------------------------------
/CRUD For File System(WPF to WEB.API)/README.md:
--------------------------------------------------------------------------------
1 | # Not Comlited project
2 |
--------------------------------------------------------------------------------
/BetRayerChatTCP.v1.1/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tigranv/WCF_WEB_API_MVC_WPF/HEAD/BetRayerChatTCP.v1.1/1.jpg
--------------------------------------------------------------------------------
/SignalR Solutions/SignalRChatMVC/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/_Layout.cshtml";
3 | }
4 |
--------------------------------------------------------------------------------
/SignalR Solutions/SignalRChatMVC/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="SignalRChatMVC.MvcApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/SignalR Solutions/SignalRChatMVC/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tigranv/WCF_WEB_API_MVC_WPF/HEAD/SignalR Solutions/SignalRChatMVC/favicon.ico
--------------------------------------------------------------------------------
/WPF_API_WCF_CRUD_For_Directory/README.md:
--------------------------------------------------------------------------------
1 | 
2 |
--------------------------------------------------------------------------------
/API For Graphics Plotting/GraphPlottinAPI/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="GraphPlottinAPI.WebApiApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/SignalR Solutions/SignalRChatMVC/Scripts/_references.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tigranv/WCF_WEB_API_MVC_WPF/HEAD/SignalR Solutions/SignalRChatMVC/Scripts/_references.js
--------------------------------------------------------------------------------
/WPF_API_WCF_CRUD_For_Directory/WebApi_Client_For_WCF/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="WebApi_Client_For_WCF.WebApiApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/CRUD For File System(WPF to WEB.API)/REST For FileSystem API/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="REST_For_FileSystem_API.WebApiApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/SignalR Solutions/SignalRChatMVC/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tigranv/WCF_WEB_API_MVC_WPF/HEAD/SignalR Solutions/SignalRChatMVC/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/SignalR Solutions/SignalRChatMVC/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tigranv/WCF_WEB_API_MVC_WPF/HEAD/SignalR Solutions/SignalRChatMVC/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/SignalR Solutions/SignalRChatMVC/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tigranv/WCF_WEB_API_MVC_WPF/HEAD/SignalR Solutions/SignalRChatMVC/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/BetRayerChatTCP.v1.1/WCF_WPF_ServiceTCP/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
Use this area to provide additional information.
8 | -------------------------------------------------------------------------------- /BetRayer.v1.0/WpfHost/App.config: -------------------------------------------------------------------------------- 1 | 2 |ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.
8 | 9 |15 | ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that 16 | enables a clean separation of concerns and gives you full control over markup 17 | for enjoyable, agile development. 18 |
19 | 20 |NuGet is a free Visual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects.
24 | 25 |You can easily find a web hosting company that offers the right mix of features and price for your applications.
29 | 30 |
2 |
3 | These projects used the following technologies: ASP.NET WebApi, WCF, WPF (XAML), ADO.NET and Entity Framework, SQL Server
4 |
5 | The examples of REST services are presented, the TCP binding and SignalR projects is also included
6 |
7 | ---------------------------------------------------------------------------------------------------------------------------------------
8 |
9 |
10 | ### [BetRayerTCP.v1.1 (WCF Service - WPF Client)](https://github.com/tigranv/WCF_WEB_API-_MVC_WPF/tree/master/BetRayerChatTCP.v1.1)
11 |
12 | The Chat Application with direct and global chat options (TCP binding and collback methods)
13 |
14 | 
15 |
16 | ---------------------------------------------------------------------------------------------------------------------------------------
17 |
18 |
19 |
20 | ### [Graphs Plotter (Client-WPF, REST service - WEB.API)](https://github.com/tigranv/WCF_WEB_API-_MVC_WPF/tree/master/API%20For%20Graphics%20Plotting)
21 |
22 | The WPF application for plotting and comparing graphs Sin cos functions with adjustable parameters
23 |
24 | 
25 |
26 | ---------------------------------------------------------------------------------------------------------------------------------------
27 |
28 |
29 |
30 | ### [Directory Manager](https://github.com/tigranv/WCF_WEB_API-_MVC_WPF/tree/master/WPF_API_WCF_CRUD_For_Directory)
31 |
32 | WPF-client for WEB.API(Rest Service for WPF and Client For WCF Service
33 |
34 | 
35 |
36 | ---------------------------------------------------------------------------------------------------------------------------------------
37 |
38 |
39 |