General .Net Flashcards
in .net a WebServvice attribute is used for what
Used to add additional information to an XML Web service,
in .net a WebServiceBinding accomplishes what
Declares a binding that defines one or more XML Web service methods
In .net what is the ConformsTo property
Gets or sets the Web Services Interoperability (WSI) specification to which the binding claims to conform
in .net how can you read a forward only data stream from sql
SqlDataReader
in .net what does SqlHelper accomplish
is intended to consolidate mundane, repetitive code that is written time and time again in data access layer components of ADO.NET applications, like this:
using Microsoft.ApplicationBlocks.Data;
SqlHelper.ExecuteNonQuery(connection,”INSERT_PERSON”,
new SqlParameter(“@Name”,txtName.Text),
new SqlParameter(“@Age”,txtAge.Text));