Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / ClientScriptItem.cs / 1 / ClientScriptItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design { ////// Represents a client script block in a web form document. /// public sealed class ClientScriptItem { private string _text; private string _source; private string _language; private string _type; private string _id; public ClientScriptItem(string text, string source, string language, string type, string id) { _text = text; _source = source; _language = language; _type = type; _id = id; } public string Id { get { return _id; } } public string Language { get { return _language; } } public string Source { get { return _source; } } public string Text { get { return _text; } } public string Type { get { return _type; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Journal.cs
- DbParameterCollectionHelper.cs
- HtmlShim.cs
- HyperLinkColumn.cs
- backend.cs
- TextChangedEventArgs.cs
- DbConnectionStringBuilder.cs
- ObjectStateManagerMetadata.cs
- ColorInterpolationModeValidation.cs
- VirtualDirectoryMapping.cs
- DataChangedEventManager.cs
- HostedHttpRequestAsyncResult.cs
- TerminateDesigner.cs
- BuildManager.cs
- Geometry.cs
- CopyOnWriteList.cs
- MouseEventArgs.cs
- TextBox.cs
- LineInfo.cs
- ObjectListFieldCollection.cs
- DetailsView.cs
- UrlPath.cs
- ColumnCollection.cs
- DataGridCheckBoxColumn.cs
- MobileSysDescriptionAttribute.cs
- RowTypePropertyElement.cs
- SelectedGridItemChangedEvent.cs
- CommandDevice.cs
- AssemblyNameProxy.cs
- UpdateException.cs
- GradientBrush.cs
- TargetControlTypeAttribute.cs
- __FastResourceComparer.cs
- Operand.cs
- CheckBoxBaseAdapter.cs
- PageTheme.cs
- XamlClipboardData.cs
- CompoundFileStorageReference.cs
- SQLRoleProvider.cs
- ConstNode.cs
- LambdaCompiler.Binary.cs
- EntityProviderFactory.cs
- XamlParser.cs
- HttpRawResponse.cs
- XmlQueryType.cs
- Compilation.cs
- OledbConnectionStringbuilder.cs
- SmtpNegotiateAuthenticationModule.cs
- PathNode.cs
- PermissionListSet.cs
- MemberPathMap.cs
- SqlFormatter.cs
- UpdateTracker.cs
- SourceInterpreter.cs
- DocumentSchemaValidator.cs
- ToolStripEditorManager.cs
- ClassValidator.cs
- LateBoundBitmapDecoder.cs
- CAGDesigner.cs
- VideoDrawing.cs
- MaskPropertyEditor.cs
- Geometry3D.cs
- DbTypeMap.cs
- BindingEntityInfo.cs
- EnumerableRowCollectionExtensions.cs
- ActivityValidator.cs
- TransformedBitmap.cs
- CodeGotoStatement.cs
- ScriptingProfileServiceSection.cs
- PropertyManager.cs
- UserMapPath.cs
- XsdCachingReader.cs
- ValueTypeFixupInfo.cs
- HttpListener.cs
- ServiceModelConfigurationSection.cs
- RegionIterator.cs
- ErrorInfoXmlDocument.cs
- WorkflowQueue.cs
- HotSpot.cs
- RegexWriter.cs
- WebPartCatalogAddVerb.cs
- DataList.cs
- ProfileSection.cs
- GridViewCommandEventArgs.cs
- MetricEntry.cs
- ScrollEventArgs.cs
- ValidatingReaderNodeData.cs
- ItemChangedEventArgs.cs
- OSFeature.cs
- Soap12ServerProtocol.cs
- LocalizedNameDescriptionPair.cs
- XmlSchemaCollection.cs
- ChannelBinding.cs
- OverloadGroupAttribute.cs
- AppliedDeviceFiltersDialog.cs
- ColumnReorderedEventArgs.cs
- SoapAttributeOverrides.cs
- ListItemCollection.cs
- RadioButtonBaseAdapter.cs
- CollectionBase.cs