Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ApplicationServices / ProfilePropertyMetadata.cs / 1 / ProfilePropertyMetadata.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.ApplicationServices { using System; using System.Runtime.Serialization; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)] [DataContract] public class ProfilePropertyMetadata { private String _propertyName; [DataMember] public String PropertyName { get { return _propertyName; } set { _propertyName = value; } } private String _typeName; [DataMember] public String TypeName { get { return _typeName; } set { _typeName = value; } } private bool _allowAnonymousAccess; [DataMember] public bool AllowAnonymousAccess { get { return _allowAnonymousAccess; } set { _allowAnonymousAccess = value; } } private bool _isReadOnly; [DataMember] public bool IsReadOnly { get { return _isReadOnly; } set { _isReadOnly = value; } } /* Uncommnet once accessmode is available public ProfileServiceAccess _accessMode; [DataMember] public ProfileServiceAccess AccessMode { get { return _accessMode; } set { _accessMode = value; } } */ private int _serializeAs; [DataMember] public int SerializeAs { get { return _serializeAs; } set { _serializeAs = value; } } private string _defaultValue; [DataMember] public string DefaultValue { get { return _defaultValue; } set { _defaultValue = value; } } } } // 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
- TimeIntervalCollection.cs
- SymbolEqualComparer.cs
- HttpFileCollection.cs
- BinaryMessageEncodingElement.cs
- TextParagraphProperties.cs
- ResourceDisplayNameAttribute.cs
- TransactionFilter.cs
- TextServicesContext.cs
- MobileListItem.cs
- RemoteArgument.cs
- DocumentAutomationPeer.cs
- SQLBytesStorage.cs
- ListViewDeletedEventArgs.cs
- RealizationContext.cs
- SemaphoreFullException.cs
- AtomMaterializer.cs
- PermissionListSet.cs
- FileDataSourceCache.cs
- RuleElement.cs
- KeyToListMap.cs
- FilterQuery.cs
- ErrorFormatterPage.cs
- CollectionChangeEventArgs.cs
- Positioning.cs
- StrokeRenderer.cs
- ServiceOperationInvoker.cs
- PasswordTextNavigator.cs
- InternalResources.cs
- PlainXmlDeserializer.cs
- TransportBindingElement.cs
- HelpEvent.cs
- ContextQuery.cs
- HttpListener.cs
- BrushConverter.cs
- DeviceContext.cs
- PropertyItem.cs
- EntityDataSourceReferenceGroup.cs
- IdentityElement.cs
- CodeDomSerializerException.cs
- WindowsToolbar.cs
- TransactionManager.cs
- FixedSOMTableCell.cs
- NegotiateStream.cs
- DataServiceEntityAttribute.cs
- DrawingVisual.cs
- HuffmanTree.cs
- HMACSHA1.cs
- GetPolicyDetailsRequest.cs
- AttachedAnnotationChangedEventArgs.cs
- FileDialog_Vista.cs
- MsmqBindingFilter.cs
- SuppressMessageAttribute.cs
- AbandonedMutexException.cs
- PersonalizationStateInfo.cs
- SessionEndingEventArgs.cs
- GridViewColumnHeaderAutomationPeer.cs
- ImageBrush.cs
- Oid.cs
- TextElementCollectionHelper.cs
- RegexStringValidator.cs
- Propagator.ExtentPlaceholderCreator.cs
- ToolStripContentPanel.cs
- SQLBoolean.cs
- MemberProjectedSlot.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- BasePropertyDescriptor.cs
- DiffuseMaterial.cs
- StyleCollectionEditor.cs
- ElementMarkupObject.cs
- StrongNameIdentityPermission.cs
- SqlBooleanMismatchVisitor.cs
- Activity.cs
- FilterEventArgs.cs
- PerformanceCounterLib.cs
- DoubleAnimation.cs
- Utils.cs
- BrowserTree.cs
- Socket.cs
- HandlerBase.cs
- ComplexLine.cs
- TopClause.cs
- EditingCoordinator.cs
- Emitter.cs
- PersonalizationStateInfo.cs
- IdentityModelStringsVersion1.cs
- PropertyGroupDescription.cs
- ConstructorArgumentAttribute.cs
- StylusButtonEventArgs.cs
- SubclassTypeValidatorAttribute.cs
- MarkupCompilePass1.cs
- Zone.cs
- OutOfMemoryException.cs
- thaishape.cs
- ErrorsHelper.cs
- AuthenticationManager.cs
- ImageIndexConverter.cs
- PropVariant.cs
- PagerSettings.cs
- WizardSideBarListControlItemEventArgs.cs
- XmlElementCollection.cs