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
- StateManagedCollection.cs
- UnsafeNativeMethodsPenimc.cs
- WebDescriptionAttribute.cs
- CrossContextChannel.cs
- ScriptResourceAttribute.cs
- TextParaClient.cs
- MarshalByValueComponent.cs
- SessionParameter.cs
- TemplatePagerField.cs
- HostedHttpRequestAsyncResult.cs
- EventSource.cs
- BamlMapTable.cs
- WriteFileContext.cs
- MetadataItemEmitter.cs
- MetabaseServerConfig.cs
- CategoryState.cs
- SchemaDeclBase.cs
- UnsafeNativeMethods.cs
- WindowsListView.cs
- AssemblyAssociatedContentFileAttribute.cs
- ConstraintConverter.cs
- QuaternionRotation3D.cs
- StrokeNodeOperations2.cs
- XomlSerializationHelpers.cs
- CatchBlock.cs
- Merger.cs
- ImplicitInputBrush.cs
- RegistryPermission.cs
- ApplicationCommands.cs
- StylusPointPropertyUnit.cs
- PageTheme.cs
- Rotation3DAnimationUsingKeyFrames.cs
- FontDifferentiator.cs
- ReadContentAsBinaryHelper.cs
- ScopelessEnumAttribute.cs
- WsdlInspector.cs
- UIServiceHelper.cs
- Pair.cs
- WindowsListBox.cs
- XmlILIndex.cs
- EventLogPermissionEntry.cs
- ListSourceHelper.cs
- ParameterRefs.cs
- MsmqChannelListenerBase.cs
- XPathSingletonIterator.cs
- ObfuscationAttribute.cs
- StringValidatorAttribute.cs
- BufferCache.cs
- RunWorkerCompletedEventArgs.cs
- ExpressionBuilderContext.cs
- AnnotationDocumentPaginator.cs
- FixedPageStructure.cs
- TypedReference.cs
- ActivityTrace.cs
- Int32RectConverter.cs
- UnescapedXmlDiagnosticData.cs
- SignedXml.cs
- ReaderContextStackData.cs
- FtpWebResponse.cs
- XmlReturnWriter.cs
- WindowsTitleBar.cs
- ExtensionDataObject.cs
- AuthenticateEventArgs.cs
- CacheMode.cs
- SqlTrackingQuery.cs
- OLEDB_Util.cs
- DocumentAutomationPeer.cs
- IntSecurity.cs
- ComponentChangedEvent.cs
- PropertyFilterAttribute.cs
- ToolboxBitmapAttribute.cs
- ListControl.cs
- Stylus.cs
- EdmToObjectNamespaceMap.cs
- ClientCultureInfo.cs
- MembershipValidatePasswordEventArgs.cs
- FileLogRecord.cs
- ParameterReplacerVisitor.cs
- KnownIds.cs
- CreateUserErrorEventArgs.cs
- LogExtentCollection.cs
- PasswordBoxAutomationPeer.cs
- AppDomainManager.cs
- UserInitiatedNavigationPermission.cs
- PageCodeDomTreeGenerator.cs
- DocumentPropertiesDialog.cs
- RequestCacheManager.cs
- GeneralTransform3DGroup.cs
- ValueChangedEventManager.cs
- Image.cs
- DefaultPrintController.cs
- ClonableStack.cs
- BrowserCapabilitiesCodeGenerator.cs
- JavaScriptObjectDeserializer.cs
- TextElementEnumerator.cs
- OleDbConnectionFactory.cs
- Vector3DCollection.cs
- DynamicValidatorEventArgs.cs
- FtpRequestCacheValidator.cs
- OdbcTransaction.cs