 |
How Do I...Use Assembly Version Policy?
|
Total Hit (1137) |
A primary goal of the deployment system in the .NET Framework is to eliminate conflicts between applications caused by shared components and shared states (or DLL conflicts). A key solution to this problem is a robust versioning system. The .NET Framework records information about an application's d
....Read More |
Rating
 |
|
 |
How Do I...Create a Publisher Policy Assembly?
|
Total Hit (1095) |
A Publisher policy statement describes the compatibility of an assembly issued by the publisher of that shared assembly. See How Do I...Use Version Policy" to see how a publisher's policy statement fits into the overall .NET Framework version policy scheme. Publisher policy is commonly used in servi
....Read More |
Rating
 |
|
 |
How Do I...Get the types in an assembly?
|
Total Hit (1154) |
This sample illustrates how to retrieve all the types for a given assembly. To look through the types of an assembly, you first need to identify the assembly you want to manipulate. Once you have an object reference to the assembly of interest, you can call the GetTypes method on that assembly, whic
....Read More |
Rating
 |
|
 |
How Do I...List all the members of a type?
|
Total Hit (1231) |
This example lets you list the members for a given data type. The ability to list a type's members is a great way to quickly discover which elements are available. It is an important tool for reporting on your system as well as assisting in the development of user documentation. Using the Reflection
....Read More |
Rating
 |
|
 |
How Do I...Invoke methods using reflection ?
|
Total Hit (1885) |
This sample illustrates how to invoke different kinds of methods through reflection. Because the names of the methods being invoked are stored in strings, this mechanism provides the capability to specify methods to be invoked at runtime, rather than at design-time, providing the scope to give your
....Read More |
Rating
 |
|
 |
How Do I...Encrypt and Decrypt a file?
|
Total Hit (2868) |
The CryptoStream class in the System.Security.Cryptography namespace is used to easily define cryptographic transforms on any data stream. The constructor is defined as the following: CryptoStream (Stream argument, ICryptoTransform transform, CryptoStreamMode mode).
....Read More |
Rating
 |
|
 |
How Do I...Generate and compare a hash value?
|
Total Hit (2463) |
It is easy to generate and compare hash values using the cryptographic resources contained in the System.Security.Cryptography namespace. Because all hash functions take input of type Byte[], it might be necessary to convert the source into a byte array before it is hashed.
To generate a hash val
....Read More |
Rating
 |
|
 |
ADO.NET: Get Out Parameters from a Stored Procedure
|
Total Hit (616) |
Some stored procedures return values through parameters. When a parameter in a SQL statement or stored procedure is declared as "out", the value of the parameter is returned back to the caller; the value is stored in a parameter in the Parameters collection on the OleDbCommand or SqlCommand objects.
....Read More |
Rating
 |
|
 |
ADO.NET: Populate a DataSet from a Database
|
Total Hit (683) |
Getting data from a database is easy, and working with data is easier than before. If you want the results from a database as a forward only, read-only stream of data, you can execute a command and retrieve the results using the DataReader. For examples on how to use a DataReader, see Retrieve Data
....Read More |
Rating
 |
|
 |
ADO.NET: Update a Database from a DataSet
|
Total Hit (639) |
This topic illustrates how to update data in a database using a DataSet. It is important to remember that you can also insert, update, and delete data in a database directly using a SqlCommand. Understanding the concepts covered in Populate a DataSet from a Database will help you understand the curr
....Read More |
Rating
 |
|
 |
ADO.NET: Handle Errors
|
Total Hit (1223) |
In addition to Try/Catch and exceptions, the new ADO.NET data architecture allows you to add error messages to each row of Data in a DataSet. SqlDataAdapters attach error messages to Rows if updates or other actions fail. Furthermore, you can filter for rows in error to present them to the user, or
....Read More |
Rating
 |
|
 |
ADO.NET: Work with Relational Data
|
Total Hit (662) |
A DataSet can contain either unrelated tables or related tables. You can think of a DataSet as a document of data. In fact, an XML data document is like this, except it is based on a hierarchical paradigm. Because data is often stored in relational databases, the DataSet can handle both hierarchical
....Read More |
Rating
 |
|
 |
ADO.NET: Work with Typed Data
|
Total Hit (731) |
ADO classic code provides late-bound access to values within its recordset through weakly typed variables. ADO.NET code enables you to access the data held in the DataSet through a "strongly typed" metaphor. This means you can access tables and columns that are part of the DataSet with user-friendly
....Read More |
Rating
 |
|
 |
ADO.NET: Filter Data
|
Total Hit (644) |
There are many ways to filter data. One way is to filter data at the database command level, using a where clause on your query. A second way is to filter the data after it is in the DataSet. This topic covers filtering in the DataSet.
Once data is in a DataSet you can use methods on the DataSet t
....Read More |
Rating
 |
|
 |
ADO.NET: Connection Pooling
|
Total Hit (647) |
This sample illustrates how to construct a pool of connections to a datasource. You will want to do this to deploy high-performance applications. In this example the pool is established in the connection string and managed automatically by the SqlConnection.
....Read More |
Rating
 |
|
 |
ADO.NET: Generate XML with data from SQL Server
|
Total Hit (683) |
This sample illustrates how to produce XML from SQL Server using two different techniques. The first uses the ExecuteXmlReader method of SqlCommand to get an XmlTextReader, which is then populated into a DataSet using the ReadXml method of the DataSet class. The second uses the SqlDataAdapter to ext
....Read More |
Rating
 |
|
 |
ADO.NET: Loading a native ADO recordset into a DataSet
|
Total Hit (1490) |
This sample illustrates using ADO recordsets with managed Datasets. To provide access to ADO Recordset and Record objects from ADO.NET, the OLE DB .NET Data Provider overloads the Fill method of the OleDbDataAdapter to accept an ADO Recordset object or an ADO Record object. Filling a DataSet with th
....Read More |
Rating
 |
|
 |
ADO.NET: Retrieve Data using OLE DB
|
Total Hit (651) |
This sample illustrates how to read data from an OLE DB provider using the OleDbDataReader class. This class provides a way of reading a forward-only stream of data records from a data source. If you want to work with SQLServer 7.0 or higher, you should refer to the topic Retrieve Data from SQLServe
....Read More |
Rating
 |
|
 |
ADO.NET: Retrieve Data from SQL Server
|
Total Hit (678) |
This sample illustrates how to read data from SQL Server using the SqlDataReader class. This class provides a way of reading a forward-only stream of data records from a data source. If you want to work with databases that have OLE DB interfaces or versions of SQL Server prior to SQL Server 7.0, see
....Read More |
Rating
 |
|
 |
ADO.NET: Convert an ADO Application to ADO.NET
|
Total Hit (660) |
This is an example of an ADO application that has been ported to .NET without the original graphical interface. It also shows the usage of a forward-only read-only fast DataReader. It shows how to use a DataView class to take a table from a DataSet and operate on it in a fashion similar to the old A
....Read More |
Rating
 |
|
 |
How Do I...Catch an Exception?
|
Total Hit (2283) |
This sample illustrates how to catch an exception. A try...catch...finally block is used in this sample. Any code that might throw an exception is placed inside of the try block. If an exception is thrown, the catch block is entered and the program can perform the appropriate operation to recover or
....Read More |
Rating
 |
|
 |
How Do I...Throw an Exception?
|
Total Hit (1563) |
This sample illustrates how to throw an exception. A try..catch..finally block is used in to illustrate to use and catch the exception you threw. It is important to remember that when you throw an exception, you need to document the exception you throw, so that users are aware they need to include a
....Read More |
Rating
 |
|
 |
How Do I...Format basic types?
|
Total Hit (2681) |
This sample illustrates how to format base data types for display. Traditionally, formatting the user can see, such as brackets and the dash in a phone number, has not been viewed as the kind of information you want to store in a permanent datastore. The formatting provided in these demonstrations e
....Read More |
Rating
 |
|
 |
Programically Call a 404 Page Not Found
|
Total Hit (1970) |
You can set the access to the config.web file in the file itself. The <httphandlers> section allows you to specify that access to all .web files will give a 404 error:
|
Rating
 |
|
|
 |
Delete a Directory
|
Total Hit (1730) |
A code snippet used to delete a directory and all of its contents
|
Rating
 |
|
 |
How Do I...Watch file system changes?
|
Total Hit (775) |
Use the FileSystemWatcher component to monitor a file system and react when changes to it occur. This makes it possible for you to quickly and easily launch business processes when certain files or directories are created, modified, or deleted. For example, suppose you and a group of coworkers are c
....Read More |
Rating
 |
|
 |
How Do I...Create an assembly with a strong name?
|
Total Hit (1122) |
Assemblies can be assigned a cryptographic signature, called a strong name, which provides name uniqueness for the assembly and prevents someone from taking over the name of your assembly (name spoofing). If you are deploying an assembly that will be shared among many applications on the same machin
....Read More |
Rating
 |
|
 |
How Do I...Work with the global assembly cache?
|
Total Hit (1203) |
The global assembly cache is a machine-wide store used to hold assemblies that are intended to be shared by several applications on the machine. The .NET Framework provides two tools for working with the cache. One is a Windows shell extension that allows you to work with the cache using a Graphical
....Read More |
Rating
 |
|
 |
How Do I...Change the search path for private assemblies?
|
Total Hit (1949) |
Private assemblies are assemblies that are visible to only one application. The .NET Framework enables developers to build applications that are isolated from changes made to the system by other applications. Private assemblies must be deployed in the directory structure of the containing applicatio
....Read More |
Rating
 |
|