Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / infocard / common / managed / HGlobalSafeHandle.cs / 1 / HGlobalSafeHandle.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace Microsoft.InfoCards { using System; using System.Runtime.InteropServices; using Microsoft.InfoCards.Diagnostics; using System.Runtime.CompilerServices; using System.Runtime.ConstrainedExecution; using System.Security; using IDT=Microsoft.InfoCards.Diagnostics.InfoCardTrace; // // Summary: // Provides a wrapper over HGlobal alloc'd memory guaranteeing that the // contents will be released in the presence of rude app domain and thread aborts. // internal class HGlobalSafeHandle : SafeHandle { public static HGlobalSafeHandle Construct() { return new HGlobalSafeHandle(); } public static HGlobalSafeHandle Construct( string managedString ) { IDT.DebugAssert( !String.IsNullOrEmpty( managedString) , "null string" ); int bytes = (managedString.Length + 1) * 2; return new HGlobalSafeHandle( Marshal.StringToHGlobalUni( managedString ), bytes ); } public static HGlobalSafeHandle Construct( int bytes ) { IDT.DebugAssert( bytes > 0, "attempt to allocate a handle with <= 0 bytes" ); return new HGlobalSafeHandle( Marshal.AllocHGlobal( bytes ), bytes ); } [SuppressUnmanagedCodeSecurity] [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] [DllImport("Kernel32.dll", EntryPoint="RtlZeroMemory", SetLastError=false)] public static extern void ZeroMemory( IntPtr dest, Int32 size ); // // The number of bytes allocated. // private int m_bytes; [ReliabilityContract( Consistency.WillNotCorruptState, Cer.Success ) ] private HGlobalSafeHandle( IntPtr toManage, int length ) : base( IntPtr.Zero, true ) { m_bytes = length; SetHandle( toManage ); } private HGlobalSafeHandle() : base( IntPtr.Zero, true ) {} public override bool IsInvalid { get { return ( IntPtr.Zero == base.handle ); } } // // Summary: // Zero the string contents and release the handle // protected override bool ReleaseHandle() { IDT.DebugAssert( !IsInvalid, "handle is invalid in release handle" ); IDT.DebugAssert( 0 != m_bytes, "invalid size" ); ZeroMemory( base.handle, m_bytes ); Marshal.FreeHGlobal( base.handle ); return true; } } } // 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
- CompilerGeneratedAttribute.cs
- PointConverter.cs
- WpfXamlLoader.cs
- ProviderConnectionPoint.cs
- OdbcCommand.cs
- QueryExtender.cs
- ProfileProvider.cs
- RuleInfoComparer.cs
- SimpleColumnProvider.cs
- QueueSurrogate.cs
- EmptyStringExpandableObjectConverter.cs
- COM2FontConverter.cs
- ContextMenu.cs
- CompilerScopeManager.cs
- Border.cs
- ContentFileHelper.cs
- InvokeMethodActivity.cs
- SQLDateTimeStorage.cs
- Variant.cs
- ParserExtension.cs
- InputScope.cs
- IMembershipProvider.cs
- GZipDecoder.cs
- MenuItemStyleCollection.cs
- Exceptions.cs
- NullableIntMinMaxAggregationOperator.cs
- PrimitiveRenderer.cs
- ClientSettingsProvider.cs
- EncryptedData.cs
- InputQueueChannelAcceptor.cs
- SetterBaseCollection.cs
- XamlToRtfParser.cs
- OrderedDictionary.cs
- SamlAction.cs
- TemplateApplicationHelper.cs
- LinkLabelLinkClickedEvent.cs
- newinstructionaction.cs
- QuaternionAnimationUsingKeyFrames.cs
- HMACSHA256.cs
- ObjectMemberMapping.cs
- COM2Properties.cs
- DataGridViewCellStyleChangedEventArgs.cs
- HttpConfigurationSystem.cs
- _AcceptOverlappedAsyncResult.cs
- Bidi.cs
- SafeThreadHandle.cs
- ProjectionPath.cs
- MatrixAnimationUsingKeyFrames.cs
- EntityModelBuildProvider.cs
- Opcode.cs
- httpapplicationstate.cs
- ChannelSettingsElement.cs
- CalendarKeyboardHelper.cs
- StreamInfo.cs
- WaitHandleCannotBeOpenedException.cs
- ClassHandlersStore.cs
- PatternMatchRules.cs
- RsaSecurityKey.cs
- XmlDocumentType.cs
- TreeNode.cs
- SafeRightsManagementHandle.cs
- DataServiceRequestException.cs
- OrderedParallelQuery.cs
- OpacityConverter.cs
- ExpressionBuilder.cs
- ResolveNameEventArgs.cs
- ButtonField.cs
- StateBag.cs
- WebPartExportVerb.cs
- HMAC.cs
- linebase.cs
- CmsInterop.cs
- ExpressionList.cs
- assertwrapper.cs
- TriggerBase.cs
- EntityDataSourceMemberPath.cs
- CellCreator.cs
- DispatcherHooks.cs
- TextServicesCompartment.cs
- ScriptingProfileServiceSection.cs
- ExtensionQuery.cs
- ListViewUpdatedEventArgs.cs
- CodeSnippetCompileUnit.cs
- Globals.cs
- MembershipUser.cs
- EntityDataSourceQueryBuilder.cs
- PropertyPathWorker.cs
- SessionEndingCancelEventArgs.cs
- Compress.cs
- HandlerBase.cs
- ImportedNamespaceContextItem.cs
- CodePageEncoding.cs
- sqlstateclientmanager.cs
- SurrogateSelector.cs
- VisemeEventArgs.cs
- DataControlCommands.cs
- ExternalFile.cs
- AuthorizationRuleCollection.cs
- SafeNativeMethods.cs
- PermissionRequestEvidence.cs