Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Shared / MS / Internal / securitycriticaldata.cs / 1 / securitycriticaldata.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // This is a helper class to facilate the storage of Security critical data ( aka "Plutonium") // It's primary purpose is to do put a [SecurityCritical] on all access to the data. // // What is "critical data" ? This is any data created that required an Assert for it's creation. // As an example - the creation of an HwndWrapper during Dispatcher.Attach. // // History: // 10/25/04 : marka 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 DRT using MS.Internal.Drt; #else #error Attempt to use FriendAccessAllowedAttribute from an unknown assembly. using MS.Internal.YourAssemblyName; #endif namespace MS.Internal { [FriendAccessAllowed] internal struct SecurityCriticalData{ /// /// Critical - as this accesses _value which is Critical. /// Safe - as the caller already got the critical value. /// [SecurityCritical, SecurityTreatAsSafe] internal SecurityCriticalData(T value) { _value = value; } //// Critical "by definition" - this class is intended only to store critical data. // internal T Value { [SecurityCritical] get { return _value; } } ////// Critical - by definition as this is a wrapper for Critical data. /// [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 Security critical data ( aka "Plutonium") // It's primary purpose is to do put a [SecurityCritical] on all access to the data. // // What is "critical data" ? This is any data created that required an Assert for it's creation. // As an example - the creation of an HwndWrapper during Dispatcher.Attach. // // History: // 10/25/04 : marka 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 DRT using MS.Internal.Drt; #else #error Attempt to use FriendAccessAllowedAttribute from an unknown assembly. using MS.Internal.YourAssemblyName; #endif namespace MS.Internal { [FriendAccessAllowed] internal struct SecurityCriticalData{ /// /// Critical - as this accesses _value which is Critical. /// Safe - as the caller already got the critical value. /// [SecurityCritical, SecurityTreatAsSafe] internal SecurityCriticalData(T value) { _value = value; } //// Critical "by definition" - this class is intended only to store critical data. // internal T Value { [SecurityCritical] get { return _value; } } ////// Critical - by definition as this is a wrapper for Critical data. /// [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
- ReflectEventDescriptor.cs
- TransformationRules.cs
- TreeNodeStyleCollection.cs
- ErrorProvider.cs
- IdentityHolder.cs
- HtmlInputSubmit.cs
- PageCodeDomTreeGenerator.cs
- TraceContextRecord.cs
- SystemIPv4InterfaceProperties.cs
- ScrollContentPresenter.cs
- TransactionChannelListener.cs
- XsdDuration.cs
- ObjectAnimationBase.cs
- HttpHandlerActionCollection.cs
- PenCursorManager.cs
- DataSourceSelectArguments.cs
- SqlGatherConsumedAliases.cs
- PaperSource.cs
- DataColumnChangeEvent.cs
- LinqDataSourceHelper.cs
- XmlSchemaAny.cs
- TextAdaptor.cs
- PrinterSettings.cs
- Token.cs
- SqlConnectionHelper.cs
- ExpressionEditorAttribute.cs
- CodeTypeMemberCollection.cs
- FloaterBaseParagraph.cs
- ClickablePoint.cs
- SerializationInfoEnumerator.cs
- QuotedPrintableStream.cs
- BatchParser.cs
- XmlWriterSettings.cs
- Size.cs
- SelectQueryOperator.cs
- ChannelServices.cs
- ListViewGroupCollectionEditor.cs
- NestPullup.cs
- HttpListenerException.cs
- HttpServerVarsCollection.cs
- PageCache.cs
- Queue.cs
- GridProviderWrapper.cs
- ToolStripPanelRow.cs
- ScriptControlDescriptor.cs
- InstanceOwnerQueryResult.cs
- CompilationRelaxations.cs
- ReadContentAsBinaryHelper.cs
- DataError.cs
- TextDecorationLocationValidation.cs
- CodeBinaryOperatorExpression.cs
- SafeEventLogReadHandle.cs
- ViewCellSlot.cs
- PolicyManager.cs
- SettingsPropertyValue.cs
- BulletedList.cs
- Message.cs
- RequestCacheManager.cs
- TemplatedEditableDesignerRegion.cs
- SessionStateItemCollection.cs
- SettingsAttributes.cs
- RoleService.cs
- IntSecurity.cs
- KeyFrames.cs
- MemberListBinding.cs
- GridPatternIdentifiers.cs
- SplitterCancelEvent.cs
- LogWriteRestartAreaAsyncResult.cs
- Compiler.cs
- Process.cs
- TraceUtility.cs
- FileEnumerator.cs
- EditCommandColumn.cs
- ConfigXmlSignificantWhitespace.cs
- XmlSchemaParticle.cs
- RemotingConfiguration.cs
- OperatorExpressions.cs
- Validator.cs
- CustomErrorsSectionWrapper.cs
- OdbcDataReader.cs
- NullableIntAverageAggregationOperator.cs
- ColumnMapCopier.cs
- AtomParser.cs
- SqlBuilder.cs
- CheckBoxField.cs
- VirtualizedItemProviderWrapper.cs
- SafeEventHandle.cs
- FileInfo.cs
- WebResourceAttribute.cs
- DoubleUtil.cs
- WebBrowserHelper.cs
- WindowVisualStateTracker.cs
- XpsPackagingException.cs
- SplineKeyFrames.cs
- ListItemCollection.cs
- SmiXetterAccessMap.cs
- TemplateManager.cs
- MailMessageEventArgs.cs
- TransactionFilter.cs
- Misc.cs