Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / TrustUi / MS / Internal / documents / SignatureSummaryDialog.cs / 1 / SignatureSummaryDialog.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: // SignatureSummaryDialog. This dialog class handles both the Signature Summary // dialog and the Request Signature Dialog. The toggle for changing the dialog is // in the constructor (bool showRequestDialog). Some fields are used for both // dialog types and others are only used in one or the other. // // History: // 05/04/05 - [....] created // //--------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Security; using System.Windows.Forms; using System.IO.Packaging; using System.Windows.TrustUI; using MS.Internal.PresentationUI; namespace MS.Internal.Documents { internal sealed partial class SignatureSummaryDialog : DialogBaseForm { #region Constructors //----------------------------------------------------- // // Constructors // //----------------------------------------------------- ////// Constructor /// /// Ad /// The DocSigManager ref so dialog can call sign method. ///internal SignatureSummaryDialog(IList signatureResourcesList, DocumentSignatureManager docSigManager, bool showRequestDialog ) { //Init private fields _documentSignatureManager = docSigManager; //Set Dialog Type (Summary or Request) _showRequestDialog = showRequestDialog; // Initialize all the UI components InitializeDialogType(); //Show only the buttons appropriate for the current mode. if (_showRequestDialog == true) { Text = SR.Get(SRID.DigSigRequestTitle); _buttonSign.Visible = false; _buttonViewCert.Visible = false; _buttonRequestAdd.Visible = true; _buttonRequestDelete.Visible = true; } else { Text = SR.Get(SRID.DigSigSumTitle); _buttonRequestAdd.Visible = false; _buttonRequestDelete.Visible = false; _buttonSign.Visible = true; _buttonViewCert.Visible = true; } //Find the signatures applied to this package and add them to the the ListBox foreach (SignatureResources signatureResources in signatureResourcesList) { AddDigSig(signatureResources); } // Add a handler to update the dialog when signature status changes DocumentSignatureManager.Current.SignatureStatusChange += new DocumentSignatureManager.SignatureStatusChangeHandler(OnSignatureStatusChange); } #endregion Constructors #region Private Properties //------------------------------------------------------ // // Private Properties // //----------------------------------------------------- /// /// Indicates what width the Listbox has reserved for the Icon. /// ///private int IconWidth { get { return _showRequestDialog ? 0 : 35; } } /// /// Indicates what height the Listbox has reserved for the Icon. /// ///private int IconHeight { get { return _showRequestDialog ? 0 : 35; } } /// /// Indicates what width the Listbox has reserved for all the /// text (minus icon). /// ///private int RemainingTextWidth { get { return _listBoxSummary.Width - IconWidth; } } /// /// Indicates the width reserved for the Subject text. /// ///private int SummaryNameTextWidth { get { return _showRequestDialog ? (int)(RemainingTextWidth * 0.20) : (int)(RemainingTextWidth * 0.60); } } /// /// Indicates the width reserved for the message text. /// ///private int IntentTextWidth { get { return _showRequestDialog ? (int)((RemainingTextWidth - SummaryNameTextWidth) * 0.55) : (int)(RemainingTextWidth * 0.40); } } /// /// Indicates the width reserved for the signed content text. /// ///private int LocaleTextWidth { get { return (int)((RemainingTextWidth - SummaryNameTextWidth - IntentTextWidth) * 0.5); } } /// /// Indicates the width reserved for the signed content text. /// ///private int SignByTextWidth { get { return RemainingTextWidth - SummaryNameTextWidth - IntentTextWidth - LocaleTextWidth; } } /// /// Indicates the padding within the reserved width for each text section. /// private Padding CellPadding { get { return _cellPadding; } } #endregion Private Properties #region Private Methods //------------------------------------------------------ // // Private Methods // //------------------------------------------------------ ////// ApplySignatureSpecificResources - sets the text based on Cert and Signature. /// ////// Critical /// 1) Touches critical function _buttonRequestDelete_Click. /// TreatAsSafe /// 1) The function is set as the event handler for the delete button, /// which is the intended use. /// [SecurityCritical, SecurityTreatAsSafe] private void InitializeDialogType() { InitializeColumnHeaders(); //Show only the buttons appropriate for the current mode. if (_showRequestDialog == true) { Text = SR.Get(SRID.DigSigRequestTitle); _buttonSign.Visible = false; _buttonViewCert.Visible = false; _buttonRequestAdd.Visible = true; _buttonRequestDelete.Visible = true; AcceptButton = _buttonRequestAdd; } else { Text = SR.Get(SRID.DigSigSumTitle); _buttonRequestAdd.Visible = false; _buttonRequestDelete.Visible = false; _buttonSign.Visible = true; _buttonViewCert.Visible = true; AcceptButton = _buttonSign; } _buttonRequestDelete.Click += new System.EventHandler(_buttonRequestDelete_Click); } ////// InitializeColumnHeaders. /// ///private void InitializeColumnHeaders() { Padding columnMargin = new Padding(0); Padding columnPadding = new Padding(CellPadding.Left, 3, 0, 3); Font columnHeaderFont = new System.Drawing.Font(Font, System.Drawing.FontStyle.Bold); if (_showRequestDialog) { Label nameHeader = new Label(); nameHeader.AutoSize = true; nameHeader.Text = SR.Get(SRID.DigSigSumColumnHeaderName); nameHeader.Font = columnHeaderFont; nameHeader.MinimumSize = new Size(IconWidth + SummaryNameTextWidth, 0); nameHeader.MaximumSize = new Size(IconWidth + SummaryNameTextWidth, 0); nameHeader.Margin = columnMargin; nameHeader.Padding = columnPadding; Label intentHeader = new Label(); intentHeader.AutoSize = true; intentHeader.Text = SR.Get(SRID.DigSigSumColumnHeaderIntent); intentHeader.Font = columnHeaderFont; intentHeader.MinimumSize = new Size(IntentTextWidth, 0); intentHeader.MaximumSize = new Size(IntentTextWidth, 0); intentHeader.Margin = columnMargin; intentHeader.Padding = columnPadding; Label locationHeader = new Label(); locationHeader.AutoSize = true; locationHeader.Text = SR.Get(SRID.DigSigSumColumnHeaderLocale); locationHeader.Font = columnHeaderFont; locationHeader.MinimumSize = new Size(LocaleTextWidth, 0); locationHeader.MaximumSize = new Size(LocaleTextWidth, 0); locationHeader.Margin = columnMargin; locationHeader.Padding = columnPadding; Label signByHeader = new Label(); signByHeader.AutoSize = true; signByHeader.Text = SR.Get(SRID.DigSigSumColumnHeaderSignBy); signByHeader.Font = columnHeaderFont; signByHeader.MinimumSize = new Size(SignByTextWidth, 0); signByHeader.MaximumSize = new Size(SignByTextWidth, 0); signByHeader.Margin = columnMargin; signByHeader.Padding = columnPadding; _columnHeaderPanel.Controls.Add(nameHeader); _columnHeaderPanel.Controls.Add(intentHeader); _columnHeaderPanel.Controls.Add(locationHeader); _columnHeaderPanel.Controls.Add(signByHeader); } else { Label statusHeader = new Label(); statusHeader.AutoSize = true; statusHeader.Text = SR.Get(SRID.DigSigSumColumnHeaderSignatureStatus); statusHeader.Font = columnHeaderFont; statusHeader.MaximumSize = new Size(IconWidth + SummaryNameTextWidth,0); statusHeader.MinimumSize = new Size(IconWidth + SummaryNameTextWidth, 0); statusHeader.Margin = columnMargin; statusHeader.Padding = columnPadding; Label intentHeader = new Label(); intentHeader.AutoSize = true; intentHeader.Text = SR.Get(SRID.DigSigSumColumnHeaderIntent); intentHeader.Font = columnHeaderFont; intentHeader.MinimumSize = new Size(IntentTextWidth, 0); intentHeader.MaximumSize = new Size(IntentTextWidth, 0); intentHeader.Margin = columnMargin; intentHeader.Padding = columnPadding; _columnHeaderPanel.Controls.Add(statusHeader); _columnHeaderPanel.Controls.Add(intentHeader); } } /// /// AddDigSig add the Dig Sig to the ListBox. /// /// The IDigitalSignature to add to the ListBox. ///private void AddDigSig(SignatureResources signatureResources) { //Add the item to the ListBox. _listBoxSummary.Items.Add(signatureResources); } /// /// _buttonDone_Click Handles the "Done" button click event. /// /// sender object /// EventArgs ////// /// Critical /// 1) Calls critical function DocumentSignatureManager.OnSign /// TreatAsSafe /// 1) The IntPtr passed in is the handle to this safe WinForms dialog /// [SecurityCritical, SecurityTreatAsSafe] private void _buttonDone_Click(object sender, EventArgs e) { if (_showRequestDialog && _listBoxSummary.Items.Count > 0) { if (System.Windows.MessageBox.Show( SR.Get(SRID.DigitalSignatureMessageSignNow), SR.Get(SRID.DigitalSignatureMessageSignNowTitle), System.Windows.MessageBoxButton.YesNo, System.Windows.MessageBoxImage.Exclamation ) == System.Windows.MessageBoxResult.Yes) { //Call the DocumentSignatureManager OnSign method. _documentSignatureManager.OnSign(null, this.Handle); } } Close(); } ////// _buttonSign_Click Handles the "Sign" button click event. /// /// sender object /// EventArgs ////// /// Critical /// 1) Calls critical function DocumentSignatureManager.OnSign /// TreatAsSafe /// 1) The IntPtr passed in is the handle to this safe WinForms dialog /// [SecurityCritical, SecurityTreatAsSafe] private void _buttonSign_Click(object sender, EventArgs e) { //verify that something is selected. if (_listBoxSummary.SelectedIndex >= 0) { //Call the DocumentSignatureManager OnSign method. _documentSignatureManager.OnSign( (SignatureResources)_listBoxSummary.Items[_listBoxSummary.SelectedIndex], this.Handle); } else { //Nothing was selected so this is a regular sign. //Call the DocumentSignatureManager OnSign method. _documentSignatureManager.OnSign(null, this.Handle); } RefreshSignatureList(false); } ////// _buttonViewCert_Click Handles the "View Certificate" button click event. /// /// sender object /// EventArgs ////// Critical /// 1) Calls critical function DocumentSignatureManager.OnCertificateView /// TreatAsSafe /// 1) The IntPtr passed in is the handle to this safe WinForms dialog /// [SecurityCritical, SecurityTreatAsSafe] private void _buttonViewCert_Click(object sender, EventArgs e) { //verify that something is selected. if (_listBoxSummary.SelectedIndex >= 0) { _documentSignatureManager.OnCertificateView( (SignatureResources)_listBoxSummary.Items[_listBoxSummary.SelectedIndex], this.Handle); } } ////// _buttonRequestAdd_Click Handles the Request "Add" button click event. /// /// sender object /// EventArgs ///private void _buttonRequestAdd_Click(object sender, EventArgs e) { //Create and show the Request Signature Dialog (modal) _documentSignatureManager.OnSummaryAdd(); RefreshSignatureList(true); } /// /// _buttonRequestDelete_Click Handles the Request "Delete" button click event. /// /// sender object /// EventArgs ////// /// Critical /// 1) This can be used to remove a requested signature, which is a /// critical operation. /// [SecurityCritical] private void _buttonRequestDelete_Click(object sender, EventArgs e) { //verify that something is selected. if (_listBoxSummary.SelectedIndex >= 0) { //Create and show the Signature Details Dialog (modal) _documentSignatureManager.OnSummaryDelete( (SignatureResources) _listBoxSummary.Items[_listBoxSummary.SelectedIndex] ); RefreshSignatureList(true); } } ////// Event handler for when the document's signature status changes. This forces the dialog /// to refresh the list of signatures and status. /// /// Sender (not used) /// Event arguments (not used) private void OnSignatureStatusChange(object sender, DocumentSignatureManager.SignatureStatusEventArgs args) { // Save the selected index of the list box so it can be restored int selectedIndex = _listBoxSummary.SelectedIndex; RefreshSignatureList(_showRequestDialog); _listBoxSummary.SelectedIndex = selectedIndex; } ////// RefreshSignatureList. /// private void RefreshSignatureList(bool requestOnly) { // //now we need to refresh everything. //Start by removing all items in the list. _buttonRequestDelete.Enabled = false; _buttonViewCert.Enabled = false; _listBoxSummary.Items.Clear(); //Get a new collection of signatureResources IListsignatureResourcesList = _documentSignatureManager.GetSignatureResourceList(requestOnly /*requestsOnly*/); //Find the signatures applied to this package and add them to the the ListBox foreach (SignatureResources signatureResources in signatureResourcesList) { AddDigSig(signatureResources); } } /// /// _listBoxSummary_SelectedIndexChanged Handles the Index Change /// event for the ListBox. Using to redraw all items so that the font /// color is corect. /// /// sender object /// EventArgs ///private void _listBoxSummary_SelectedIndexChanged(object sender, EventArgs e) { //We should think about optimizing this. We shouldn't Invalidate //entire control when there is a selection change. _listBoxSummary.Invalidate(); if (_listBoxSummary.SelectedIndex >= 0) { _listBoxSummary.TabStop = true; _buttonRequestDelete.Enabled = true; if (_documentSignatureManager.HasCertificate((SignatureResources)_listBoxSummary.Items[_listBoxSummary.SelectedIndex])) { _buttonViewCert.Enabled = true; } else { _buttonViewCert.Enabled = false; } //We have selected an item, the AcceptButton is now the //"View Certificates" button if we're showing the //Summary dialog. if (!_showRequestDialog) { AcceptButton = _buttonViewCert; } } else { _listBoxSummary.TabStop = false; _buttonViewCert.Enabled = false; //Nothing selected, put AcceptButton back to defaults AcceptButton = _showRequestDialog ? _buttonRequestAdd : _buttonSign; } } /// /// _listBoxSummary_Resize Handles the ListBox Resize /// event so all items in the listbox can get redrawn. /// /// sender object /// EventArgs ///private void _listBoxSummary_Resize(object sender, EventArgs e) { _listBoxSummary.Invalidate(); } /// /// _listBoxSummary_MeasureItem Handles MeasureItem event. /// /// sender object /// MeasureItemEventArgs ///private void _listBoxSummary_MeasureItem(object sender, MeasureItemEventArgs e) { e.ItemHeight = CalculateItemHeight(e.Graphics, (SignatureResources)_listBoxSummary.Items[e.Index] ); } /// /// CalculateItemHeight calculates the height for a ListBox item. /// /// /// ListBoxSummaryItem ///private int CalculateItemHeight(Graphics graphics, SignatureResources item) { // //Determine the height of all the text fields taking into account //the reserved widths and padding. All height/padding and width are //non-negative // int heightIntent = (int)graphics.MeasureString(item._reason, _listBoxSummary.Font, IntentTextWidth - CellPadding.Left - CellPadding.Right).Height; int heightSummary = 0; int heightSignBy = 0; int heightLocale = 0; if (_showRequestDialog) { // For the request dialog, we use the subject name instead of the summary message heightSummary = (int)graphics.MeasureString(item._subjectName, _listBoxSummary.Font, SummaryNameTextWidth - CellPadding.Left - CellPadding.Right).Height; heightSignBy = (int)graphics.MeasureString(item._signBy, _listBoxSummary.Font, SignByTextWidth - CellPadding.Left - CellPadding.Right).Height; heightLocale = (int)graphics.MeasureString(item._location, _listBoxSummary.Font, LocaleTextWidth - CellPadding.Left - CellPadding.Right).Height; } else { heightSummary = (int)graphics.MeasureString(item._summaryMessage, _listBoxSummary.Font, SummaryNameTextWidth - CellPadding.Left - CellPadding.Right).Height; } //Want to return the biggest height. int h = Math.Max(Math.Max(Math.Max(Math.Max(IconHeight,heightSummary), heightIntent), heightLocale), heightSignBy); //Will return max text height plus the cellpadding. return h + CellPadding.Top + CellPadding.Bottom; } /// /// _listBoxSummary_DrawItem handles the DrawItem event. /// /// object /// DrawItemEventArgs ///private void _listBoxSummary_DrawItem(object sender, DrawItemEventArgs e) { // draws it if this is a valid item if (e.Index > -1 && e.Index < _listBoxSummary.Items.Count) { // if we can draw the item we do SignatureResources item = (SignatureResources)_listBoxSummary.Items[e.Index]; e.DrawBackground(); DrawListBoxSummaryItem(e.Graphics, e.Bounds, item, _listBoxSummary.SelectedIndex == e.Index ); e.DrawFocusRectangle(); } } /// /// DrawListBoxSummaryItem draws the item in the given bounds and /// taking the reserved widths and padding. /// /// object /// DrawItemEventArgs ///private void DrawListBoxSummaryItem(Graphics graphics, Rectangle bounds, SignatureResources item, bool isSelected) { StringFormat stringFormat = new StringFormat(); // Determine the StringFormat we use to render our text -- for // RTL we need to set the DirectionRightToLeft Flag, for LTR // we use the default. // Additionally, in RTL we right-align rendered text to its bounding // rect (StringAlignment.Near). if (RightToLeft == RightToLeft.Yes) { stringFormat.LineAlignment = StringAlignment.Near; stringFormat.FormatFlags = StringFormatFlags.DirectionRightToLeft; } // Calculate the X offsets for the bounding rects for the items we're // going to display (for RTL the X coordinates are effectively mirrored) int iconXOffset; int statusXOffset; int intentXOffset; // Flip for RTL Layout if (RightToLeftLayout) { iconXOffset = bounds.Right - (CellPadding.Right + IconWidth); // We offset the status and intent text by the padding on both sides so that the // right edge of the text is properly aligned with the column header. statusXOffset = bounds.Right + CellPadding.Right - (IconWidth + SummaryNameTextWidth); intentXOffset = bounds.Right + CellPadding.Right + CellPadding.Left - (IconWidth + SummaryNameTextWidth + IntentTextWidth); } else { iconXOffset = bounds.Left + CellPadding.Left; statusXOffset = bounds.Left + IconWidth + CellPadding.Left; intentXOffset = bounds.Left + IconWidth + SummaryNameTextWidth + CellPadding.Left; } // The text color for this item Brush brush = isSelected ? SystemBrushes.HighlightText : SystemBrushes.ControlText; //Create bounds to draw Icon Rectangle iconRect = new Rectangle( iconXOffset, bounds.Y + CellPadding.Top, IconWidth - CellPadding.Left - CellPadding.Right, bounds.Height - CellPadding.Top - CellPadding.Bottom ); //All padding and width are non-negative. //Create bounds to draw Name / Status text Rectangle statusRect = new Rectangle( statusXOffset, bounds.Y + CellPadding.Top, SummaryNameTextWidth - CellPadding.Left - CellPadding.Right, bounds.Height - CellPadding.Top - CellPadding.Bottom ); //Create bounds to draw Intent text Rectangle intentRect = new Rectangle( intentXOffset, bounds.Y + CellPadding.Top, IntentTextWidth - CellPadding.Left - CellPadding.Right, bounds.Height - CellPadding.Top - CellPadding.Bottom ); if (_showRequestDialog) { int signByXOffset; int localeXOffset; //Flip for RTL Layout if (RightToLeftLayout) { // We offset the sign by and locale text by the padding on both sides so that the // right edge of the text is properly aligned with the column header. signByXOffset = bounds.Left + CellPadding.Left + CellPadding.Right; localeXOffset = bounds.Left + CellPadding.Left + CellPadding.Right + SignByTextWidth; } else { signByXOffset = bounds.Left + IconWidth + SummaryNameTextWidth + IntentTextWidth + SignByTextWidth + CellPadding.Left; localeXOffset = bounds.Left + IconWidth + SummaryNameTextWidth + IntentTextWidth + CellPadding.Left; } //Create bounds to draw SignedBy text Rectangle signByRect = new Rectangle( signByXOffset, bounds.Y + CellPadding.Top, SignByTextWidth - CellPadding.Left - CellPadding.Right, bounds.Height - CellPadding.Top - CellPadding.Bottom ); //Create bounds to draw Locale text Rectangle localeRect = new Rectangle( localeXOffset, bounds.Y + CellPadding.Top, LocaleTextWidth - CellPadding.Left - CellPadding.Right, bounds.Height - CellPadding.Top - CellPadding.Bottom ); //Draw the Name Text graphics.DrawString(item._subjectName, _listBoxSummary.Font, brush, statusRect, stringFormat); //Draw the SignedBy Text graphics.DrawString(item._signBy, _listBoxSummary.Font, brush, signByRect, stringFormat); //Draw the locale Text graphics.DrawString(item._location, _listBoxSummary.Font, brush, localeRect, stringFormat); } else { //Draw the summary text graphics.DrawString(item._summaryMessage, _listBoxSummary.Font, brush, statusRect, stringFormat); //Draw the icon Debug.Assert(item._displayImage != null, "Signature icon is null"); if (item._displayImage != null) { graphics.DrawImage(item._displayImage, iconRect.Location); } } //Draw the Intent Text graphics.DrawString(item._reason, _listBoxSummary.Font, brush, intentRect, stringFormat); } #endregion Private Methods #region Protected Methods //----------------------------------------------------- // // Protected Methods // //------------------------------------------------------ protected override void ApplyResources() { base.ApplyResources(); //Get string from stringtable. _buttonDone.Text = SR.Get(SRID.DigSigSumDone); _buttonSign.Text = SR.Get(SRID.DigSigSumSign); _buttonViewCert.Text = SR.Get(SRID.DigSigSumViewCert); _buttonRequestAdd.Text = SR.Get(SRID.DigSigSumRequestAdd); _buttonRequestDelete.Text = SR.Get(SRID.DigSigSumRequestDelete); } #endregion Protected Methods #region Private Fields //----------------------------------------------------- // // Private Fields // //----------------------------------------------------- private DocumentSignatureManager _documentSignatureManager; private bool _showRequestDialog; /// /// The padding around each block of text /// private Padding _cellPadding = new Padding(10); #endregion Private Fields } } // 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
- baseaxisquery.cs
- PrintPreviewDialog.cs
- GridPattern.cs
- DateTimePicker.cs
- SettingsPropertyValue.cs
- MessageAction.cs
- QilNode.cs
- SystemFonts.cs
- GridViewDeletedEventArgs.cs
- BindingNavigator.cs
- ChangeTracker.cs
- KeyToListMap.cs
- Module.cs
- ModelFunctionTypeElement.cs
- RegistryPermission.cs
- TemplatedWizardStep.cs
- MatrixTransform.cs
- DataBoundLiteralControl.cs
- ObjectItemLoadingSessionData.cs
- PartitionResolver.cs
- SqlDuplicator.cs
- XmlSerializerFormatAttribute.cs
- AttributedMetaModel.cs
- MutexSecurity.cs
- SqlPersonalizationProvider.cs
- ExtendedTransformFactory.cs
- TextContainerChangeEventArgs.cs
- SQLDecimal.cs
- EnumMember.cs
- Point3DAnimation.cs
- ToolStripGrip.cs
- ObjectDataSourceEventArgs.cs
- PersistenceTypeAttribute.cs
- RewritingPass.cs
- documentsequencetextpointer.cs
- AncestorChangedEventArgs.cs
- TransformedBitmap.cs
- Root.cs
- StylusLogic.cs
- BaseTemplateBuildProvider.cs
- EnglishPluralizationService.cs
- SubtreeProcessor.cs
- UnauthorizedAccessException.cs
- DataGridViewRowEventArgs.cs
- ContentFilePart.cs
- DataGridViewElement.cs
- PasswordBoxAutomationPeer.cs
- BrowserCapabilitiesFactoryBase.cs
- EmulateRecognizeCompletedEventArgs.cs
- QilTernary.cs
- UrlMappingCollection.cs
- LinqDataSourceUpdateEventArgs.cs
- SqlProfileProvider.cs
- SizeConverter.cs
- CodeDOMUtility.cs
- XDRSchema.cs
- EndpointDispatcher.cs
- _Events.cs
- MeasureItemEvent.cs
- HebrewNumber.cs
- RequestCacheEntry.cs
- UserUseLicenseDictionaryLoader.cs
- UnauthorizedAccessException.cs
- InkCollectionBehavior.cs
- ButtonField.cs
- SkinBuilder.cs
- PointHitTestResult.cs
- JournalNavigationScope.cs
- LocalizableResourceBuilder.cs
- DefaultWorkflowLoaderService.cs
- StartUpEventArgs.cs
- TransformerTypeCollection.cs
- Journaling.cs
- ProtectedUri.cs
- webclient.cs
- PersonalizableAttribute.cs
- _StreamFramer.cs
- StringWriter.cs
- ObjectManager.cs
- ResetableIterator.cs
- ResXDataNode.cs
- ListItemParagraph.cs
- UserControl.cs
- PackWebRequestFactory.cs
- RemoteWebConfigurationHostServer.cs
- DesignerHelpers.cs
- ExecutionProperties.cs
- XmlSchemaSubstitutionGroup.cs
- DataTableNewRowEvent.cs
- ComponentCollection.cs
- ObjectTypeMapping.cs
- SamlSecurityTokenAuthenticator.cs
- CheckoutException.cs
- BindingManagerDataErrorEventArgs.cs
- DataKeyArray.cs
- GridViewSelectEventArgs.cs
- ContentType.cs
- UInt32Storage.cs
- XmlEntity.cs
- MimeObjectFactory.cs