Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Security / Cryptography / DeriveBytes.cs / 1305376 / DeriveBytes.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //[....] // // // DeriveBytes.cs // namespace System.Security.Cryptography { [System.Runtime.InteropServices.ComVisible(true)] public abstract class DeriveBytes // On Orcas DeriveBytes is not disposable, so we cannot add the IDisposable implementation to the // CoreCLR mscorlib. However, this type does need to be disposable since subtypes can and do hold onto // native resources. Therefore, on desktop mscorlibs we add an IDisposable implementation. #if !FEATURE_CORECLR : IDisposable #endif // !FEATURE_CORECLR { // // public methods // public abstract byte[] GetBytes(int cb); public abstract void Reset(); public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } protected virtual void Dispose(bool disposing) { return; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebRequestModuleElement.cs
- FontConverter.cs
- HeaderUtility.cs
- FormViewDeleteEventArgs.cs
- SrgsElementFactory.cs
- AssemblyBuilder.cs
- ITreeGenerator.cs
- WebPartDescriptionCollection.cs
- WebBrowsableAttribute.cs
- DigestComparer.cs
- XAMLParseException.cs
- TracePayload.cs
- XmlQuerySequence.cs
- InstancePersistenceCommand.cs
- HandledMouseEvent.cs
- ColumnBinding.cs
- MailDefinitionBodyFileNameEditor.cs
- HwndSourceParameters.cs
- UIElement.cs
- XmlSchemaAll.cs
- PeerObject.cs
- DrawingBrush.cs
- Metafile.cs
- OdbcStatementHandle.cs
- MobileControl.cs
- PageThemeCodeDomTreeGenerator.cs
- DependentList.cs
- TextView.cs
- SafeCryptoHandles.cs
- TableParagraph.cs
- FactoryGenerator.cs
- TypeBuilder.cs
- Behavior.cs
- ListItemsPage.cs
- DetailsViewModeEventArgs.cs
- FlowchartDesigner.Helpers.cs
- WindowsScrollBarBits.cs
- StackSpiller.cs
- Math.cs
- SqlDataAdapter.cs
- BamlTreeUpdater.cs
- CompatibleComparer.cs
- PropertyEmitterBase.cs
- SchemaCollectionCompiler.cs
- FormatterConverter.cs
- SecurityContext.cs
- XmlDigitalSignatureProcessor.cs
- HWStack.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- TypedReference.cs
- SchemaCollectionCompiler.cs
- TextTreeNode.cs
- SoapSchemaExporter.cs
- ItemsPresenter.cs
- MessageLogger.cs
- PartialToken.cs
- SemanticResultKey.cs
- UnmanagedMemoryStream.cs
- TypeSystem.cs
- SafeProcessHandle.cs
- NativeMethods.cs
- FormattedTextSymbols.cs
- NTAccount.cs
- XmlSchemaInferenceException.cs
- RegexReplacement.cs
- _IPv6Address.cs
- GridViewCommandEventArgs.cs
- AudioBase.cs
- XmlDictionaryReader.cs
- SqlConnectionString.cs
- ImageSourceConverter.cs
- ParameterCollection.cs
- BitmapMetadata.cs
- CodeAccessSecurityEngine.cs
- TextElementAutomationPeer.cs
- HashLookup.cs
- UriParserTemplates.cs
- NavigatorInput.cs
- AttachmentCollection.cs
- NumberSubstitution.cs
- SelectingProviderEventArgs.cs
- GridViewItemAutomationPeer.cs
- ApplicationServicesHostFactory.cs
- FixedTextBuilder.cs
- ByteAnimationUsingKeyFrames.cs
- ListSortDescription.cs
- ObjectSet.cs
- Pair.cs
- DBBindings.cs
- NavigationProgressEventArgs.cs
- WindowsGraphics2.cs
- RNGCryptoServiceProvider.cs
- XmlQualifiedName.cs
- AsnEncodedData.cs
- OperationResponse.cs
- CustomErrorsSectionWrapper.cs
- DispatcherOperation.cs
- DesignerHierarchicalDataSourceView.cs
- WeakReferenceList.cs
- ADMembershipUser.cs