Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Compilation / ExpressionPrefixAttribute.cs / 1 / ExpressionPrefixAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Compilation { using System; using System.ComponentModel; using System.Security.Permissions; [AttributeUsage(AttributeTargets.Class, AllowMultiple=false)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ExpressionPrefixAttribute : Attribute { private string _expressionPrefix; public ExpressionPrefixAttribute(string expressionPrefix) { if (String.IsNullOrEmpty(expressionPrefix)) { throw new ArgumentNullException("expressionPrefix"); } _expressionPrefix = expressionPrefix; } public string ExpressionPrefix { get { return _expressionPrefix; } } } }
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartConnectionsCloseVerb.cs
- TableCell.cs
- SqlReferenceCollection.cs
- HttpServerVarsCollection.cs
- SecurityUtils.cs
- EntryWrittenEventArgs.cs
- _NetRes.cs
- Form.cs
- BitmapEffectGeneralTransform.cs
- CodeMemberField.cs
- DataContractSerializerElement.cs
- VariableQuery.cs
- LayoutDump.cs
- InstancePersistenceEvent.cs
- HttpResponseHeader.cs
- Mapping.cs
- CounterSampleCalculator.cs
- GifBitmapEncoder.cs
- Rect.cs
- CodeComment.cs
- MemberInfoSerializationHolder.cs
- ServiceModelEnumValidatorAttribute.cs
- PathData.cs
- SqlReferenceCollection.cs
- NamespaceCollection.cs
- NativeBuffer.cs
- MessageAction.cs
- ImageAttributes.cs
- FunctionImportMapping.cs
- SimpleTypeResolver.cs
- Speller.cs
- ElementProxy.cs
- WorkflowMessageEventArgs.cs
- CodeTypeDelegate.cs
- TextContainerHelper.cs
- FormsAuthenticationCredentials.cs
- ExpressionBinding.cs
- OpCodes.cs
- HandoffBehavior.cs
- FontSizeConverter.cs
- TypedMessageConverter.cs
- HttpResponse.cs
- StreamBodyWriter.cs
- OleDbRowUpdatedEvent.cs
- BinaryFormatter.cs
- VirtualPathProvider.cs
- util.cs
- HtmlElement.cs
- OpenTypeLayout.cs
- AlternationConverter.cs
- Tuple.cs
- SecurityHelper.cs
- ProcessHostServerConfig.cs
- PathFigureCollection.cs
- counter.cs
- FontNamesConverter.cs
- LinkButton.cs
- SqlDataSourceCache.cs
- RadioButtonStandardAdapter.cs
- UnwrappedTypesXmlSerializerManager.cs
- MatcherBuilder.cs
- IChannel.cs
- XamlReader.cs
- SupportedAddressingMode.cs
- DataGridHeaderBorder.cs
- ListBoxItemWrapperAutomationPeer.cs
- SHA1Managed.cs
- SmiConnection.cs
- ToolTipService.cs
- LayoutDump.cs
- OperationSelectorBehavior.cs
- FixedDocument.cs
- COM2PropertyPageUITypeConverter.cs
- EventToken.cs
- ExceptionHandlersDesigner.cs
- Query.cs
- DataSourceControl.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- Visitor.cs
- WeakRefEnumerator.cs
- InProcStateClientManager.cs
- MultiPageTextView.cs
- SqlResolver.cs
- FormattedText.cs
- ItemCollection.cs
- DataGridPageChangedEventArgs.cs
- MaskedTextBoxTextEditor.cs
- DecimalConstantAttribute.cs
- OdbcErrorCollection.cs
- SubpageParagraph.cs
- FamilyCollection.cs
- DataGridView.cs
- DependencyPropertyAttribute.cs
- Int32AnimationUsingKeyFrames.cs
- TextureBrush.cs
- ParserOptions.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- RangeBaseAutomationPeer.cs
- MiniModule.cs
- MsmqIntegrationBinding.cs