Search Results

0
votes

Can a service have multiple endpoints?

You will need to create an entire new host if you are currently using IIS as your host - IIS only supports HTTP and not TCP bindings. If however you are using WAS or a windows service, then you'll …
1
vote

How to install .net dll?

You either need to make sure your dll is located in the Visual Studio public assemblies folder, or that its folder location is known by some specific Visual Studio registry keys. For further infor …
0
votes

WPF Toolkit Datagrid - Custom Tabbing

It is possible to turn off tabbing on the first two columns by using IsTabStop property on the individual DataGridCell items. Unfortunately this isn't as easy to access as some of the other WPF co …