Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / xsp / System / Web / Extensions / ui / RegisteredScript.cs / 1 / RegisteredScript.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Security.Permissions; [ AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal), ] public sealed class RegisteredScript { private RegisteredScriptType _scriptType; private Control _control; private string _key; private string _script; private Type _type; private bool _addScriptTags; private string _url; internal RegisteredScript(Control control, Type type, string key, string url) { Debug.Assert(control != null); Debug.Assert(type != null); Debug.Assert(!String.IsNullOrEmpty(url)); // null and empty "key" are treated different by asp.net script duplicate detection so null is allowed. _scriptType = RegisteredScriptType.ClientScriptInclude; _control = control; _type = type; _key = key; _url = url; } internal RegisteredScript(RegisteredScriptType scriptType, Control control, Type type, string key, string script, bool addScriptTags) { Debug.Assert(control != null); Debug.Assert( scriptType != RegisteredScriptType.OnSubmitStatement || !addScriptTags, "OnSubmitStatements cannot have addScriptTags."); Debug.Assert(type != null); // null and empty "key" are treated different by asp.net script duplicate detection so null is allowed. // null script allowed _scriptType = scriptType; _control = control; _type = type; _key = key; _script = script; _addScriptTags = addScriptTags; } public bool AddScriptTags { get { return _addScriptTags; } } public Control Control { get { return _control; } } public string Key { get { // may be null return _key; } } public string Script { get { // may be null return _script; } } public RegisteredScriptType ScriptType { get { return _scriptType; } } [SuppressMessage("Microsoft.Naming", "CA1721:PropertyNamesShouldNotMatchGetMethods", Justification = "Refers to a Control, not my Object.GetType()")] public Type Type { get { return _type; } } [SuppressMessage("Microsoft.Design", "CA1056:UriPropertiesShouldNotBeStrings", Justification = "Consistent with RegisterClientScriptInclude.")] public string Url { get { // null if this is not a client script include or resource return _url; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Security.Permissions; [ AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal), ] public sealed class RegisteredScript { private RegisteredScriptType _scriptType; private Control _control; private string _key; private string _script; private Type _type; private bool _addScriptTags; private string _url; internal RegisteredScript(Control control, Type type, string key, string url) { Debug.Assert(control != null); Debug.Assert(type != null); Debug.Assert(!String.IsNullOrEmpty(url)); // null and empty "key" are treated different by asp.net script duplicate detection so null is allowed. _scriptType = RegisteredScriptType.ClientScriptInclude; _control = control; _type = type; _key = key; _url = url; } internal RegisteredScript(RegisteredScriptType scriptType, Control control, Type type, string key, string script, bool addScriptTags) { Debug.Assert(control != null); Debug.Assert( scriptType != RegisteredScriptType.OnSubmitStatement || !addScriptTags, "OnSubmitStatements cannot have addScriptTags."); Debug.Assert(type != null); // null and empty "key" are treated different by asp.net script duplicate detection so null is allowed. // null script allowed _scriptType = scriptType; _control = control; _type = type; _key = key; _script = script; _addScriptTags = addScriptTags; } public bool AddScriptTags { get { return _addScriptTags; } } public Control Control { get { return _control; } } public string Key { get { // may be null return _key; } } public string Script { get { // may be null return _script; } } public RegisteredScriptType ScriptType { get { return _scriptType; } } [SuppressMessage("Microsoft.Naming", "CA1721:PropertyNamesShouldNotMatchGetMethods", Justification = "Refers to a Control, not my Object.GetType()")] public Type Type { get { return _type; } } [SuppressMessage("Microsoft.Design", "CA1056:UriPropertiesShouldNotBeStrings", Justification = "Consistent with RegisterClientScriptInclude.")] public string Url { get { // null if this is not a client script include or resource return _url; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ValueChangedEventManager.cs
- DataBindingExpressionBuilder.cs
- View.cs
- ZoneIdentityPermission.cs
- StrongTypingException.cs
- Marshal.cs
- DrawingContextDrawingContextWalker.cs
- InputBinder.cs
- WebPartConnectionsCancelVerb.cs
- ScrollBar.cs
- NumberFormatInfo.cs
- Quad.cs
- HtmlTableCellCollection.cs
- WindowsRichEdit.cs
- Helper.cs
- SafeNativeMethods.cs
- HandlerBase.cs
- DataGridViewColumnCollectionEditor.cs
- ListBindingConverter.cs
- HScrollProperties.cs
- FeatureSupport.cs
- XhtmlConformanceSection.cs
- ContactManager.cs
- ObjectTypeMapping.cs
- AuthenticationConfig.cs
- PrintSchema.cs
- SspiSecurityTokenParameters.cs
- XmlChildEnumerator.cs
- FormCollection.cs
- UpDownBase.cs
- XhtmlTextWriter.cs
- ContentFilePart.cs
- ValidationErrorCollection.cs
- ColorTransform.cs
- Int32.cs
- OracleInfoMessageEventArgs.cs
- StringValidatorAttribute.cs
- QuestionEventArgs.cs
- RecordConverter.cs
- ClientSettingsStore.cs
- ReadWriteObjectLock.cs
- DesignerActionUIStateChangeEventArgs.cs
- RestHandler.cs
- EntityDataSourceContainerNameConverter.cs
- ConfigurationSectionCollection.cs
- DateTimeFormatInfoScanner.cs
- XmlDataFileEditor.cs
- JsonQNameDataContract.cs
- QuotedPrintableStream.cs
- MessageBox.cs
- CqlBlock.cs
- ConfigurationLocation.cs
- datacache.cs
- ReadOnlyDataSourceView.cs
- StrokeCollectionConverter.cs
- ListBindingHelper.cs
- TextPattern.cs
- RowsCopiedEventArgs.cs
- BitmapInitialize.cs
- SQLUtility.cs
- SoapEnumAttribute.cs
- Registry.cs
- TdsRecordBufferSetter.cs
- CodeSubDirectory.cs
- MouseActionValueSerializer.cs
- FileStream.cs
- VariableAction.cs
- FilteredReadOnlyMetadataCollection.cs
- SmtpSection.cs
- DetailsViewUpdatedEventArgs.cs
- WorkflowPrinting.cs
- WindowsTooltip.cs
- SortFieldComparer.cs
- GetKeyedHashRequest.cs
- MultipleViewProviderWrapper.cs
- WindowsFont.cs
- EllipseGeometry.cs
- MonikerProxyAttribute.cs
- Int64.cs
- ColorKeyFrameCollection.cs
- SqlMetaData.cs
- SecurityContextCookieSerializer.cs
- RowVisual.cs
- UserControl.cs
- ConnectionsZone.cs
- StopStoryboard.cs
- SqlTypesSchemaImporter.cs
- EtwTrace.cs
- JsonSerializer.cs
- JsonReaderWriterFactory.cs
- ServiceDefaults.cs
- RequestResponse.cs
- Bidi.cs
- ConnectionManagementElementCollection.cs
- CfgParser.cs
- Error.cs
- PowerModeChangedEventArgs.cs
- MethodBuilderInstantiation.cs
- EventLogEntryCollection.cs
- XmlSerializationGeneratedCode.cs