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
- FrameworkElement.cs
- ExtendedProperty.cs
- MethodBuilder.cs
- TextRange.cs
- HashCodeCombiner.cs
- SoapConverter.cs
- MembershipUser.cs
- LocationFactory.cs
- SignerInfo.cs
- HtmlWindow.cs
- CorePropertiesFilter.cs
- HtmlWindow.cs
- StringFunctions.cs
- SecurityDescriptor.cs
- ServerReliableChannelBinder.cs
- Stacktrace.cs
- EventManager.cs
- ScopedKnownTypes.cs
- SafeFindHandle.cs
- FontDifferentiator.cs
- TextEmbeddedObject.cs
- CheckBoxField.cs
- SizeConverter.cs
- ValidatorCollection.cs
- ObjectDataSourceView.cs
- ToolStripRenderEventArgs.cs
- DataSourceCacheDurationConverter.cs
- IDQuery.cs
- PerformanceCounterPermissionEntry.cs
- ThreadExceptionDialog.cs
- GridToolTip.cs
- ErrorsHelper.cs
- SqlInternalConnectionSmi.cs
- FontInfo.cs
- DataContractSerializerMessageContractImporter.cs
- GPRECT.cs
- OracleConnectionString.cs
- SQLInt64Storage.cs
- ConfigurationStrings.cs
- TextBox.cs
- SmiRequestExecutor.cs
- CellNormalizer.cs
- RealProxy.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- ContentTextAutomationPeer.cs
- SerializationInfoEnumerator.cs
- TextTabProperties.cs
- OSFeature.cs
- TimeSpanConverter.cs
- DataGridGeneralPage.cs
- MDIWindowDialog.cs
- WebSysDisplayNameAttribute.cs
- wmiutil.cs
- SqlRowUpdatedEvent.cs
- InteropDesigner.xaml.cs
- AmbientValueAttribute.cs
- ControlSerializer.cs
- EventWaitHandle.cs
- SimpleLine.cs
- WorkflowElementDialog.cs
- OleStrCAMarshaler.cs
- HttpListenerResponse.cs
- ActiveDesignSurfaceEvent.cs
- ForceCopyBuildProvider.cs
- WebPartConnectionCollection.cs
- SystemIPInterfaceProperties.cs
- FlowchartDesigner.Helpers.cs
- Pen.cs
- ChangeBlockUndoRecord.cs
- WsdlBuildProvider.cs
- SecurityTokenSerializer.cs
- TextCompositionEventArgs.cs
- ServiceNameElement.cs
- ExceptionTrace.cs
- QueueProcessor.cs
- objectresult_tresulttype.cs
- Thickness.cs
- EditorPartCollection.cs
- ConfigurationFileMap.cs
- JoinGraph.cs
- Merger.cs
- FormCollection.cs
- FixedTextView.cs
- VisualStateGroup.cs
- EmptyStringExpandableObjectConverter.cs
- PropertyGridCommands.cs
- SqlServer2KCompatibilityCheck.cs
- ReachPageContentCollectionSerializerAsync.cs
- GestureRecognizer.cs
- StrongNameUtility.cs
- VsPropertyGrid.cs
- GlyphInfoList.cs
- DataGridTablesFactory.cs
- DocumentCollection.cs
- WindowCollection.cs
- ParseHttpDate.cs
- InstanceNotReadyException.cs
- RemotingHelper.cs
- IPAddressCollection.cs
- WindowsAltTab.cs