تبلیغات
زرسازان(اخبار-برنامه نویسی-کامپیوتر) - لغت نامه Visual Studio and .NET Framework-Part1:(A-C)II

                           زرسازان(اخبار-برنامه نویسی-کامپیوتر) 


حدیث روز

   اندیشه زر است.... اگر در دستانت بگیری!

 
اخبار پربیننده سایت تابناک
روانشناسی
روانشناسی
برنامه نویسی
برنامه نویسی
آیا میدانید
آیا میدانید
***پروژه دانشجویی***

پروژه دانشجویی ,پروژه های دانشجویی مهندسی کامپیوتر asp.net(پروژه پایانی کارشناسی کامپیوتر آموزشگاه تحت وب ASP.NET & C#پایگاه داده SQL Server 2005)

دانلو دپروژه دانشجویی پروژه های دانشجویی مهندسی نرم افزار c#.net

پروژه دانشجویی کتابخانه با فایل  c++

پروژه دانشجویی فروشگاه اینترنتی sql server ,vb.net

پروژه دانشجویی منچ با C++

پروژه دانشجویی مدیریت هتل با مستندات uml با ابزار php ,mysql

بازی تخته نرد Backgammon با TC++

بپروژه دانشجویی گرافیکی پیمایش همه خانه های شطرنج بوسیله اسب با TC++

پروژه دانشجویی گرافیکی زیردریایی با TC++

چهار پروژه دانشجویی گرافیکی 1.شبیه ساز چهار راه 2.شبیه ساز فرود گاه 3.اتش بازی 4.بازی نقطه خور با TC++

پروژه دانشجویی اسکنر scanner برای درس کامپایلر با TC++

پروژه دانشجویی مشخص کردن این که این تاریخ چند شنبه است با TC++

پروژه دانشجویی تبدیل تاریخ میلادی به شمسی با TC++

پروژه دانشجویی حل مسیله 8 هشت وزیر شطرنج که یکدیگر را تحدید نکنند

برنامه کتابخانه دارای شاخص ( index) و امکان جستجوی دودویی در شاخص

 برنامه شطرنج به زبان ++C در محیط VS 2008 به صورت کامل و با استفاده از فایل

 

لغت نامه

Visual Studio and .NET Framework

Part1:(A-C)II

accelerator editor

A resource editor that allows you to add, delete, change, or browse the shortcut key assignments for your project.

access control list (ACL)

A list that specifies the rules for access to a particular resource. Microsoft Windows NT implements user-based ACLs, which specify the resources available to a particular user.

actions pane

A customizable document-level task pane in Microsoft Office Word and Microsoft Office Excel.

Active Template Library

A collection of C++ templates to help users create Component Object Model (COM) objects.

ActiveX control

A control, such as a check box or button that offers options to users or runs macros or scripts that automate a task. You can write macros for the control in Microsoft Visual Basic for Applications or scripts in Microsoft Script Editor.

add-in

In the .NET Framework add-in programming model, the add-in application assembly that communicates with a host application over a communication pipeline. See also: host, pipeline.

add-in view

In the .NET Framework add-in programming model, an assembly that contains interfaces or abstract base classes, and represents the add-in's view of the methods and types used to communicate with a host. See also: add-in, host.

add-in-side adapter

In the .NET Framework add-in programming model, an assembly that contains one or more classes, and converts data to and from the add-in view and the contract. Depending on the direction of the call, the adapter is either converting from a view to a contract or from a contract to a view. See also: add-in, contract.

ADO.NET

The suite of data access technologies included in the .NET Framework class libraries that provide access to relational data and XML. ADO.NET consists of classes that make up the DataSet (such as tables, rows, columns, relations, and so on), .NET Framework data providers, and custom type definitions (such as SqlTypes for SQL Server).

adorner

A special glyph on the design surface. Adorners are usually attached to a target control, and they give the user a graphical means of adjusting the control's properties.

AfxFreeLibrary

A function called by MFC applications after they explicitly linked to a DLL module when that module is no longer needed. This function decrements the module's reference count and, if the reference count is zero, unmaps it from the address space of the process.

AfxLoadLibrary

A library that is used by MFC applications when linking to an extension DLL.

aggregate event

In WMI, a type of event that is generated after a series of events of another type have occurred. An aggregate event is used to represent a series of events to avoid flooding the event consumer. See also: event, event consumer.

alpha channel

In GDI+, the portion of pixel color data reserved for transparency information.

anchoring

The way of determining the edges of a parent control to which a control is bound and how a control is resized with its parent. Anchoring and docking are mutually exclusive. See also: docking.

anonymous method

A code block that is passed as a parameter to a delegate.

anonymous type

A class type whose name is generated by the compiler and that inherits directly from Object. Members of an anonymous type are properties that are inferred from the object initializer that creates instances of the type.

application base

The directory where the .exe file that loads into the initial or default application domain is located. If you create your own application domain, the application base is the location you specify in the AppDomainSetup class. See also: application domain.

application domain (AppDomain)

A boundary that the common language runtime establishes around objects created within the same application scope (that is, anywhere along the sequence of object activations beginning with the application entry point). Application domains help isolate objects created in one application from those created in other applications so that run-time behavior is predictable. Multiple application domains can exist in a single process.

application manifest

The file used in ClickOnce applications that describes the application and all of its constituent files.

application service

In ASP.NET, built-in functionality for common application tasks. ASP.NET includes application services for authentication (ASP.NET membership), persistent per-user information (profile properties), and more.

application state

In ASP.NET, a variable store that is created on the server for the current application and is shared by all users. Application state is typically used to store information that is used for all users, such as application-wide settings.

application-level add-in

A supplemental program that modifies or adds functionality to an existing program or application. The modifications are available to the application at all times.

ASP.NET

A set of technologies in the Microsoft .NET Framework for building Web applications and Web services. ASP.NET pages execute on the server and generate markup (such as HTML, WML, or XML) that is sent to a desktop or mobile browser. ASP.NET pages use a compiled, event-driven programming model that improves performance and enables the separation of application logic and user interface. ASP.NET pages and Web services files created using ASP.NET contain server-side (rather than client-side) logic written in Visual Basic, C#, or any .NET-compatible language. Web applications and Web services take advantage of the features of the common language runtime, such as type safety, inheritance, language interoperability, versioning, and integrated security.

ASP.NET application services database

In ASP.NET, a database that stores the data for several ASP.NET application services, including membership, Web Parts personalization, roles, and profiles. The database can be a local database in the Web site's App_Data folder or a SQL Server or other database, depending on how the site is configured.

ASP.NET mobile controls

A set of ASP.NET controls designed for mobile Web applications. ASP.NET mobile controls extend their ASP.NET server control counterparts.

ASP.NET mobile Web Forms

Extensions to ASP.NET Web Forms that target mobile devices from cell phones to Pocket PCs.

ASP.NET page

A component of an ASP.NET application.

ASP.NET server control

A server-side component that encapsulates user interface and related functionality. An ASP.NET server control derives directly or indirectly from the System.Web.UI.Control class. The superset of ASP.NET server controls includes Web server controls, HTML server controls, and ASP.NET mobile controls. The page syntax for an ASP.NET server control includes a runat="server" attribute on the control's tag. See also: HTML server control, validation server controls, Web server control.

ASP.NET Web application

An application that processes HTTP requests (Web requests) and executes on top of ASP.NET. An ASP.NET Web application can include ASP.NET pages, Web services, HTTP handlers, and HTTP modules.

assembly

A collection of one or more files that are versioned and deployed as a unit. An assembly is the primary building block of a .NET Framework application. All managed types and resources are contained within an assembly and are marked either as accessible only within the assembly or as accessible from code in other assemblies. Assemblies also play a key role in security. The code access security system uses information about the assembly to determine the set of permissions that code in the assembly is granted. See also: private assembly, shared assembly.

assembly cache

A code cache used for side-by-side storage of assemblies. There are two parts to the cache: the global assembly cache contains assemblies that are explicitly installed to be shared among many applications on the computer; the download cache stores code downloaded from Internet or intranet sites, isolated to the application that caused the download so that code downloaded on behalf of one application or page does not impact other applications. See also: global assembly cache.

assembly manifest

An integral part of every assembly that renders the assembly self-describing. The assembly manifest contains the assembly's metadata. The manifest establishes the assembly identity, specifies the files that make up the assembly implementation, specifies the types and resources that make up the assembly, itemizes the compile-time dependencies on other assemblies, and specifies the set of permissions required for the assembly to run properly. This information is used at run time to resolve references, enforce version binding policy, and validate the integrity of loaded assemblies. The self-describing nature of assemblies also helps makes zero-impact install and XCOPY deployment feasible. See also: assembly, metadata.

assembly metadata

See other term: assembly manifest

assertion (Assert)

In .NET Framework security, helps to make sure that a method has access to a particular resource even if the method's callers do not have the required permission. During a stack walk, if a stack frame asserting the required permission is encountered, a security check for that permission will succeed. Assertions can create security holes and should be used only with extreme caution.

association

In the ADO.NET Entity Framework, the definition of a relationship between entity types.

association class

In WMI, a class that describes a relationship between two classes or between instances of two classes. The properties of an association class include pointers, or references, to the two classes or instances. The Association qualifier is attached to every association class for identification.

association line

In Class Designer, a line that shows that two types are related. The line represents a field or property and leads from the type that contains the member to the field or property’s type.

association set

In the ADO.NET Entity Framework, a logical container for instances of associations of the same type.

ASSOCIATORS OF

A WMI Query Language statement that supports the traversal of associations programmatically by retrieving all endpoint instances that are associated with a particular source instance. See also: GROUP, HAVING, ISA, REFERENCES OF, SELECT, WHERE, WITHIN.

asynchronous communication layer

In ASP.NET, the layer of AJAX functionality that takes care of communication between the browser and the server.

asynchronous method

A method call that returns to the caller immediately regardless of whether processing has completed. The results of processing are returned through another call on another thread. Asynchronous methods free the caller from having to wait until processing has finished. See also: semisynchronous method.

asynchronous postback

In ASP.NET, the process of sending Web page data (plus view state and other necessary metadata) from the browser to the server without a complete postback and without blocking the user from continuing to work in the page. Asynchronous postbacks are an important feature of AJAX technology.

ATL

See Active Template Library.

attribute

A descriptive declaration that can be applied to programming elements such as types, fields, methods, and properties. Attributes are saved with the metadata of a .NET Framework file and can be used to describe code to the common language runtime or to affect application behavior at run time.

authentication

In .NET Framework security, the process of discovering and verifying the identity of a principal by examining the user's credentials against some authority. See also: principal.

authorization

In .NET Framework security, the process of limiting access rights by granting or denying specific permissions to an authenticated identity or principal. See also: authentication, principal.

autopostback

In ASP.NET server controls, a setting that causes the control to submit the page when the user interacts with the control. (By default, only button controls cause a postback.) For example, if a DropDownList control is set to perform autopostback, the page is submitted as soon as a user selects an item from the list. See also: ASP.NET server control.

bounds

The size and location of an object.

boxing

The conversion of a value type instance to an object, which implies that the instance will carry full type information at run time and will be allocated in the heap. The Microsoft intermediate language (MSIL) instruction set's box instruction converts a value type to an object by making a copy of the value type and embedding it in a newly allocated object. See also: Microsoft intermediate language, unboxing, value type.

build log

The recorded text output of a Visual Studio build, often indicating command lines issued and status of each step in the build process. For a C++ build, this file is called BuildLog.htm.

C#

A programming language designed for building enterprise applications that run on the .NET Framework. C#, which is an evolution of C and C++, is type safe and object oriented. Because it is compiled as managed code, it benefits from the services of the common language runtime, such as language interoperability, security, and garbage collection.

card

A Web page in WML. WML devices can either display the contents of a card on a single screen or, when necessary, provide scroll bars so that the entire contents of the card can be viewed. Developers do not need to worry about manipulating cards or decks (groups of cards) because ASP.NET mobile controls handle formatting (including pagination) for targeted devices. See also: deck, WML.

catalog

A list of Web Parts controls (or other Web server, custom server, or user controls), created by a System.Web.UI.WebControls.CatalogPart control, that users can add to a Web Parts page. See also: Web Parts controls, Web Parts page.

CCW

See other term: COM callable wrapper (CCW)

chevron

The double angle bracket denoting an overflow button control.

chrome

The common user interface elements rendered around each Web Parts part control within a given zone. The chrome for a part control includes a border, a title bar, and the icons, title text, and verbs menu that appear within the title bar. The appearance of the chrome is set at the zone level and applies to all part controls in a zone. The rendering of chrome and of individual System.Web.UI.WebControls.WebParts.WebPart controls is handled by the System.Web.UI.WebControls.WebParts.WebPartChrome class. See also: part controls, Web Parts controls, zone.

cHTML

A markup language used on some cell phones. cHTML is a subset of HTML with additional tags to enhance mobile functionality.

CIM

See other term: Common Information Model (CIM)

CIM Object Manager

A component in the WMI infrastructure that handles the interaction between management applications and providers. The CIM Object Manager supports services such as event notification, remote access, and query processing. The CIM Object Manager also grants access to the WMI repository.

CIM schema

In WMI, a collection of class definitions used to represent managed objects that occur in every management environment. See also: schema.

class

A reference type that encapsulates data (constants and fields) and behavior (methods, properties, indexers, events, operators, instance constructors, static constructors, and destructors), and can contain nested types. Class types support inheritance, a mechanism whereby a derived class can extend and specialize a base class. See also: encapsulation, indexer, property, reference type.

Class Designer

A visual design environment that enables you to visualize the structure of classes and other types. The Class Designer also enables you to edit the source code of classes and types through these visual representations.

Classic mode

In IIS 7.0, a configuration in which request processing emulates the model used in IIS 6.0. In Classic mode, IIS receives requests and dispatches them to ISAPI components according to mapped file name extensions. IIS and the process that handles the request run as separate processes. For example, requests for ASP.NET resources are dispatched to the aspnet_isapi.dll component.

ClickOnce deployment

A deployment method that enables you to publish Windows-based applications to a Web server or network file share for simplified installation.

client application services

In Windows-based applications, built-in functionality to access ASP.NET application services for common application tasks, including remote login, roles, and application settings.

client area

The portion of a Windows-based application excluding toolbars, menus, and status bars.

client coordinates

The coordinates in which the X and Y screen position are specified relative to the upper-left corner of the application, which is regarded as the origin (0,0). In Right-to-Left (RTL) applications, the upper-right corner is the origin. See also: right to left (RTL).

cliext

The namespace for STL/CLR containers, iterators, and algorithms

clip

The area of the screen or page that enables graphics output.

closed generic type

A constructed generic type that has no unspecified generic type parameters, either of its own or of any enclosing types or methods. Closed generic types can be instantiated. See also: constructed type, generics, generic type, generic type parameter, open generic type.

CLR

See other term: common language runtime

CLS

See other term: Common Language Specification (CLS)

CLS-compliant

Code that publicly exposes only language features that are in the Common Language Specification. CLS compliance can apply to classes, interfaces, components, and tools. See also: Common Language Specification (CLS).

 

Refrence:

 WWW.ZARSAZAN.IR

Of

MSDN 2008

نظرسنجی

    به مطالب و عملکرد سایت زرسازان طی یکسال گذشته چه امتیازی می دهید؟





آمار وبلاگ

  • کل بازدید :
  • بازدید امروز :
  • بازدید دیروز :
  • بازدید این ماه :
  • بازدید ماه قبل :
  • تعداد نویسندگان :
  • تعداد کل پست ها :
  • آخرین بازدید :
  • آخرین بروز رسانی :