Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Shared / MS / Internal / SecurityCriticalDataForSet.cs / 1 / SecurityCriticalDataForSet.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // This is a helper class to facilate the storage of data that's Critical for set. // The data itself is not information disclosure but the value controls a critical // operation. // // For example a filepath variable might control what part of the file system the // code gets access to. // // History: // 01/30/05 : [....] Created. // //--------------------------------------------------------------------------- using System ; using System.Security ; #if WINDOWS_BASE using MS.Internal.WindowsBase; #elif PRESENTATION_CORE using MS.Internal.PresentationCore; #elif PRESENTATIONFRAMEWORK using MS.Internal.PresentationFramework; #elif PRESENTATIONUI using MS.Internal.PresentationUI; #elif DRT using MS.Internal.Drt; #else #error Attempt to use FriendAccessAllowedAttribute from an unknown assembly. using MS.Internal.YourAssemblyName; #endif namespace MS.Internal { [FriendAccessAllowed] // Built into Base, also used by Core and Framework. [Serializable] internal struct SecurityCriticalDataForSet{ /// /// Critical - "by definition" - this class is intended only for data that's /// Critical for setting. /// [SecurityCritical] internal SecurityCriticalDataForSet(T value) { _value = value; } ////// Critical - Setter is Critical "by definition" - this class is intended only /// for data that's Critical for setting. /// Safe - get is safe by definition. /// Not Safe - set is not safe by definition. /// internal T Value { #if DEBUG [System.Diagnostics.DebuggerStepThrough] #endif [SecurityCritical, SecurityTreatAsSafe] get { return _value; } #if DEBUG [System.Diagnostics.DebuggerStepThrough] #endif [SecurityCritical] set { _value = value; } } ////// Critical - by definition as this data is Critical for set. /// > [SecurityCritical] private T _value; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // This is a helper class to facilate the storage of data that's Critical for set. // The data itself is not information disclosure but the value controls a critical // operation. // // For example a filepath variable might control what part of the file system the // code gets access to. // // History: // 01/30/05 : [....] Created. // //--------------------------------------------------------------------------- using System ; using System.Security ; #if WINDOWS_BASE using MS.Internal.WindowsBase; #elif PRESENTATION_CORE using MS.Internal.PresentationCore; #elif PRESENTATIONFRAMEWORK using MS.Internal.PresentationFramework; #elif PRESENTATIONUI using MS.Internal.PresentationUI; #elif DRT using MS.Internal.Drt; #else #error Attempt to use FriendAccessAllowedAttribute from an unknown assembly. using MS.Internal.YourAssemblyName; #endif namespace MS.Internal { [FriendAccessAllowed] // Built into Base, also used by Core and Framework. [Serializable] internal struct SecurityCriticalDataForSet{ /// /// Critical - "by definition" - this class is intended only for data that's /// Critical for setting. /// [SecurityCritical] internal SecurityCriticalDataForSet(T value) { _value = value; } ////// Critical - Setter is Critical "by definition" - this class is intended only /// for data that's Critical for setting. /// Safe - get is safe by definition. /// Not Safe - set is not safe by definition. /// internal T Value { #if DEBUG [System.Diagnostics.DebuggerStepThrough] #endif [SecurityCritical, SecurityTreatAsSafe] get { return _value; } #if DEBUG [System.Diagnostics.DebuggerStepThrough] #endif [SecurityCritical] set { _value = value; } } ////// Critical - by definition as this data is Critical for set. /// > [SecurityCritical] private T _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
- ResumeStoryboard.cs
- SystemWebSectionGroup.cs
- ValidationService.cs
- ListViewItemEventArgs.cs
- BCLDebug.cs
- StyleCollectionEditor.cs
- ActivityValidator.cs
- DataGridPagerStyle.cs
- _AutoWebProxyScriptHelper.cs
- StorageEntityTypeMapping.cs
- PropertyValueUIItem.cs
- HttpServerVarsCollection.cs
- IISUnsafeMethods.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- SocketInformation.cs
- TextTreeRootTextBlock.cs
- AutomationProperty.cs
- XomlCompilerError.cs
- BufferedConnection.cs
- ConfigXmlWhitespace.cs
- ToolStripCollectionEditor.cs
- XPathSelfQuery.cs
- LoginUtil.cs
- _KerberosClient.cs
- GridViewSortEventArgs.cs
- ErrorFormatterPage.cs
- SiteMapNodeItemEventArgs.cs
- Bidi.cs
- BulletChrome.cs
- SignedXml.cs
- OdbcInfoMessageEvent.cs
- FormatConvertedBitmap.cs
- DataBindingExpressionBuilder.cs
- EncoderFallback.cs
- CqlParser.cs
- ListViewEditEventArgs.cs
- File.cs
- LineSegment.cs
- GuidConverter.cs
- ClientBuildManagerCallback.cs
- ToolStripKeyboardHandlingService.cs
- SocketElement.cs
- AVElementHelper.cs
- DockProviderWrapper.cs
- LineInfo.cs
- SqlConnectionStringBuilder.cs
- AutomationFocusChangedEventArgs.cs
- baseaxisquery.cs
- OutgoingWebRequestContext.cs
- NonValidatingSecurityTokenAuthenticator.cs
- TypeInfo.cs
- LinqDataSourceUpdateEventArgs.cs
- SiteMapPathDesigner.cs
- WindowsAltTab.cs
- EmbeddedObject.cs
- TableCellCollection.cs
- StructuralType.cs
- FixedStringLookup.cs
- ScrollItemProviderWrapper.cs
- Zone.cs
- ElapsedEventArgs.cs
- EffectiveValueEntry.cs
- wmiutil.cs
- ServiceModelSectionGroup.cs
- ScriptServiceAttribute.cs
- Selection.cs
- SelectionItemPattern.cs
- HuffModule.cs
- TargetException.cs
- PreviewPageInfo.cs
- ChineseLunisolarCalendar.cs
- ServiceDescription.cs
- EntityEntry.cs
- Comparer.cs
- CacheRequest.cs
- ReachDocumentSequenceSerializerAsync.cs
- Adorner.cs
- Exception.cs
- Rect3D.cs
- ExpressionTextBoxAutomationPeer.cs
- Avt.cs
- EntityUtil.cs
- ScriptManagerProxy.cs
- MouseActionConverter.cs
- BinaryCommonClasses.cs
- selecteditemcollection.cs
- WebServiceBindingAttribute.cs
- Padding.cs
- Utility.cs
- VirtualizedItemProviderWrapper.cs
- MimeMapping.cs
- StateRuntime.cs
- ObjectContextServiceProvider.cs
- ServiceBusyException.cs
- RenderContext.cs
- OdbcInfoMessageEvent.cs
- XmlSecureResolver.cs
- FontStyle.cs
- MultipartIdentifier.cs
- ACE.cs