Click here to Skip to main content
15,896,269 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to create an api for my created web application using c sharp asp.net??
Posted
Comments
AmitGajjar 27-Dec-11 5:21am    
that will be great if you put your question with scenario/problem.

An API is nothing more than an interface that other people can use to couple with your application.

1) Decide what functionality you would like to expose to the outside world.
2) In a WEB scenario create WEB Services (or WCF etc.) for your functionality.
3) Document your interface for other people to use.
 
Share this answer
 
Comments
AmitGajjar 27-Dec-11 5:20am    
4+ providing some links will be addition.
API defines "An application programming interface (API) is a source code based specification intended to be used as an interface by software components to communicate with each other. An API may include specifications for routines, data structures, object classes, and variables.(source:wiki)"

Means you need to create a Classlibrary (DLL) that you can call through web applications.

how to crete DLL in C#.net[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900