Click here to Skip to main content
15,892,839 members

Comments by sagar15modi (Top 6 by date)

sagar15modi 28-Jul-12 5:56am View    
EDIT: webkit means all browsers which support HTML5 like Chrome,Firefox,Safari etc
sagar15modi 28-Jul-12 5:54am View    
its just example of flash plugin, i mean i want to create another plugin which can be work like this
sagar15modi 23-Dec-11 0:40am View    
i am trying to fill dataset from xml string not xml file
and i want to convert above xml to datset / datatable
sagar15modi 8-Dec-11 7:13am View    
Partial means that your class was divided, so your Form class has more components than the one in your Form.cs file. VS just put the automatic generated code in one file and your code in another. So you can not eliminate the partial unless you move all the generated code into a single file, but if you do that and use the Form Designer to change a label font, then you are doom!
sagar15modi 8-Dec-11 6:08am View    
An interesting and useful WCF extensibility point for error handling:
WCF is a very extensible framework. You can explicitly control the behaviour of your application when an exception is thrown.
You can
- Decide to send a fault to the client or not,
- Replace an exception with a fault,
- Replace a fault with another fault,
- Perform logging,
- Perform other custom activities

In order to utilise this extensibility feature, you need to implement the IErrorHandler interface. You will then need to install your custom error handler by adding it to the ErrorHandlers property of the channel dispatchers for your service. It is possible to have more than one error handler and they are called in the order they are added to this collection.

for more detail follow the link
http://blogs.msdn.com/b/pedram/archive/2008/01/25/wcf-error-handling-and-some-best-practices.aspx