Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartConnection.cs / 1 / WebPartConnection.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI.WebControls.WebParts {
using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
using System.Security.Permissions;
[
TypeConverter(typeof(ExpandableObjectConverter)),
ParseChildren(true, "Transformers")
]
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class WebPartConnection {
private string _consumerConnectionPointID;
private string _consumerID;
private bool _deleted;
private string _id;
private bool _isActive;
private bool _isShared;
private bool _isStatic;
private string _providerConnectionPointID;
private string _providerID;
private WebPartTransformerCollection _transformers;
private WebPartManager _webPartManager;
public WebPartConnection() {
_isStatic = true;
_isShared = true;
}
// PERF: Consider caching
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public WebPart Consumer {
get {
string consumerID = ConsumerID;
if (consumerID.Length == 0) {
throw new InvalidOperationException(SR.GetString(SR.WebPartConnection_ConsumerIDNotSet));
}
if (_webPartManager != null) {
return _webPartManager.WebParts[consumerID];
}
else {
return null;
}
}
}
// PERF: Consider caching
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public ConsumerConnectionPoint ConsumerConnectionPoint {
get {
WebPart consumer = Consumer;
if (consumer != null && _webPartManager != null) {
return _webPartManager.GetConsumerConnectionPoint(consumer, ConsumerConnectionPointID);
}
else {
return null;
}
}
}
[
DefaultValue(ConnectionPoint.DefaultIDInternal)
]
public string ConsumerConnectionPointID {
get {
//
return (!String.IsNullOrEmpty(_consumerConnectionPointID)) ?
_consumerConnectionPointID : ConnectionPoint.DefaultID;
}
set {
_consumerConnectionPointID = value;
}
}
[
DefaultValue("")
]
public string ConsumerID {
get {
return (_consumerID != null) ? _consumerID : String.Empty;
}
set {
_consumerID = value;
}
}
// True if this connection has been disconnected, but can not actually be removed.
// Either a static or a shared connection.
internal bool Deleted {
get {
return _deleted;
}
set {
_deleted = value;
}
}
[
DefaultValue("")
]
public string ID {
get {
return (_id != null) ? _id : String.Empty;
}
set {
_id = value;
}
}
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public bool IsActive {
get {
return _isActive;
}
}
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public bool IsShared {
get {
return _isShared;
}
}
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public bool IsStatic {
get {
return _isStatic;
}
}
// PERF: Consider caching
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public WebPart Provider {
get {
string providerID = ProviderID;
if (providerID.Length == 0) {
throw new InvalidOperationException(SR.GetString(SR.WebPartConnection_ProviderIDNotSet));
}
if (_webPartManager != null) {
return _webPartManager.WebParts[providerID];
}
else {
return null;
}
}
}
// PERF: Consider caching
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public ProviderConnectionPoint ProviderConnectionPoint {
get {
WebPart provider = Provider;
if (provider != null && _webPartManager != null) {
return _webPartManager.GetProviderConnectionPoint(provider, ProviderConnectionPointID);
}
else {
return null;
}
}
}
[
DefaultValue(ConnectionPoint.DefaultIDInternal)
]
public string ProviderConnectionPointID {
get {
//
return (!String.IsNullOrEmpty(_providerConnectionPointID)) ?
_providerConnectionPointID : ConnectionPoint.DefaultID;
}
set {
_providerConnectionPointID = value;
}
}
[
DefaultValue("")
]
public string ProviderID {
get {
return (_providerID != null) ? _providerID : String.Empty;
}
set {
_providerID = value;
}
}
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public WebPartTransformer Transformer {
get {
if (_transformers == null || _transformers.Count == 0) {
return null;
}
else {
return _transformers[0];
}
}
}
///
[
Browsable(false),
EditorBrowsable(EditorBrowsableState.Never),
PersistenceMode(PersistenceMode.InnerDefaultProperty),
]
public WebPartTransformerCollection Transformers {
get {
if (_transformers == null) {
_transformers = new WebPartTransformerCollection();
}
return _transformers;
}
}
internal void Activate() {
// This method should only be called on WebPartConnections in the WebPartManager, so
// _webPartManager should never be null.
Debug.Assert(_webPartManager != null);
Transformers.SetReadOnly();
WebPart providerWebPart = Provider;
// Cannot be null because Activate() is only called on valid Connections
Debug.Assert(providerWebPart != null);
WebPart consumerWebPart = Consumer;
// Cannot be null because Activate() is only called on valid Connections
Debug.Assert(consumerWebPart != null);
Control providerControl = providerWebPart.ToControl();
Control consumerControl = consumerWebPart.ToControl();
ProviderConnectionPoint providerConnectionPoint = ProviderConnectionPoint;
// Cannot be null because Activate() is only called on valid Connections
Debug.Assert(providerConnectionPoint != null);
if (!providerConnectionPoint.GetEnabled(providerControl)) {
consumerWebPart.SetConnectErrorMessage(SR.GetString(
SR.WebPartConnection_DisabledConnectionPoint, providerConnectionPoint.DisplayName, providerWebPart.DisplayTitle));
return;
}
ConsumerConnectionPoint consumerConnectionPoint = ConsumerConnectionPoint;
// Cannot be null because Activate() is only called on valid Connections
Debug.Assert(consumerConnectionPoint != null);
if (!consumerConnectionPoint.GetEnabled(consumerControl)) {
consumerWebPart.SetConnectErrorMessage(SR.GetString(
SR.WebPartConnection_DisabledConnectionPoint, consumerConnectionPoint.DisplayName, consumerWebPart.DisplayTitle));
return;
}
// Do not activate connections involving closed WebParts
if (!providerWebPart.IsClosed && !consumerWebPart.IsClosed) {
WebPartTransformer transformer = Transformer;
if (transformer == null) {
if (providerConnectionPoint.InterfaceType == consumerConnectionPoint.InterfaceType) {
ConnectionInterfaceCollection secondaryInterfaces = providerConnectionPoint.GetSecondaryInterfaces(providerControl);
if (consumerConnectionPoint.SupportsConnection(consumerControl, secondaryInterfaces)) {
object dataObject = providerConnectionPoint.GetObject(providerControl);
consumerConnectionPoint.SetObject(consumerControl, dataObject);
_isActive = true;
}
else {
consumerWebPart.SetConnectErrorMessage(SR.GetString(
SR.WebPartConnection_IncompatibleSecondaryInterfaces, new string[] {
consumerConnectionPoint.DisplayName, consumerWebPart.DisplayTitle,
providerConnectionPoint.DisplayName, providerWebPart.DisplayTitle}));
}
}
else {
consumerWebPart.SetConnectErrorMessage(SR.GetString(
SR.WebPartConnection_NoCommonInterface, new string[] {
providerConnectionPoint.DisplayName, providerWebPart.DisplayTitle,
consumerConnectionPoint.DisplayName, consumerWebPart.DisplayTitle}));
}
}
else {
Type transformerType = transformer.GetType();
if (!_webPartManager.AvailableTransformers.Contains(transformerType)) {
string errorMessage;
if (_webPartManager.Context != null && _webPartManager.Context.IsCustomErrorEnabled) {
errorMessage = SR.GetString(SR.WebPartConnection_TransformerNotAvailable);
}
else {
errorMessage = SR.GetString(
SR.WebPartConnection_TransformerNotAvailableWithType, transformerType.FullName);
}
consumerWebPart.SetConnectErrorMessage(errorMessage);
//
}
// Check matching interfaces on connection points and transformer attribute
Type transformerConsumerType = WebPartTransformerAttribute.GetConsumerType(transformerType);
Type transformerProviderType = WebPartTransformerAttribute.GetProviderType(transformerType);
if (providerConnectionPoint.InterfaceType == transformerConsumerType &&
transformerProviderType == consumerConnectionPoint.InterfaceType) {
// A transformer never provides any secondary interfaces
if (consumerConnectionPoint.SupportsConnection(consumerControl, ConnectionInterfaceCollection.Empty)) {
object dataObject = providerConnectionPoint.GetObject(providerControl);
object transformedObject = transformer.Transform(dataObject);
consumerConnectionPoint.SetObject(consumerControl, transformedObject);
_isActive = true;
}
else {
consumerWebPart.SetConnectErrorMessage(SR.GetString(
SR.WebPartConnection_ConsumerRequiresSecondaryInterfaces,
consumerConnectionPoint.DisplayName, consumerWebPart.DisplayTitle));
}
}
else if (providerConnectionPoint.InterfaceType != transformerConsumerType) {
string errorMessage;
if (_webPartManager.Context != null && _webPartManager.Context.IsCustomErrorEnabled) {
errorMessage = SR.GetString(
SR.WebPartConnection_IncompatibleProviderTransformer,
providerConnectionPoint.DisplayName, providerWebPart.DisplayTitle);
}
else {
errorMessage = SR.GetString(
SR.WebPartConnection_IncompatibleProviderTransformerWithType,
providerConnectionPoint.DisplayName, providerWebPart.DisplayTitle, transformerType.FullName);
}
consumerWebPart.SetConnectErrorMessage(errorMessage);
}
else {
string errorMessage;
if (_webPartManager.Context != null && _webPartManager.Context.IsCustomErrorEnabled) {
errorMessage = SR.GetString(
SR.WebPartConnection_IncompatibleConsumerTransformer,
consumerConnectionPoint.DisplayName, consumerWebPart.DisplayTitle);
}
else {
errorMessage = SR.GetString(
SR.WebPartConnection_IncompatibleConsumerTransformerWithType,
transformerType.FullName, consumerConnectionPoint.DisplayName, consumerWebPart.DisplayTitle);
}
consumerWebPart.SetConnectErrorMessage(errorMessage);
}
}
}
}
internal bool ConflictsWith(WebPartConnection otherConnection) {
return (ConflictsWithConsumer(otherConnection) || ConflictsWithProvider(otherConnection));
}
internal bool ConflictsWithConsumer(WebPartConnection otherConnection) {
return (!ConsumerConnectionPoint.AllowsMultipleConnections &&
Consumer == otherConnection.Consumer &&
ConsumerConnectionPoint == otherConnection.ConsumerConnectionPoint);
}
internal bool ConflictsWithProvider(WebPartConnection otherConnection) {
return (!ProviderConnectionPoint.AllowsMultipleConnections &&
Provider == otherConnection.Provider &&
ProviderConnectionPoint == otherConnection.ProviderConnectionPoint);
}
internal void SetIsShared(bool isShared) {
_isShared = isShared;
}
internal void SetIsStatic(bool isStatic) {
_isStatic = isStatic;
}
internal void SetTransformer(WebPartTransformer transformer) {
if (Transformers.Count == 0) {
Transformers.Add(transformer);
}
else {
Transformers[0] = transformer;
}
}
internal void SetWebPartManager(WebPartManager webPartManager) {
_webPartManager = webPartManager;
}
// Return the short typename, to improve the look of the collection editor in the designer
public override string ToString () {
return GetType().Name;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI.WebControls.WebParts {
using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
using System.Security.Permissions;
[
TypeConverter(typeof(ExpandableObjectConverter)),
ParseChildren(true, "Transformers")
]
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class WebPartConnection {
private string _consumerConnectionPointID;
private string _consumerID;
private bool _deleted;
private string _id;
private bool _isActive;
private bool _isShared;
private bool _isStatic;
private string _providerConnectionPointID;
private string _providerID;
private WebPartTransformerCollection _transformers;
private WebPartManager _webPartManager;
public WebPartConnection() {
_isStatic = true;
_isShared = true;
}
// PERF: Consider caching
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public WebPart Consumer {
get {
string consumerID = ConsumerID;
if (consumerID.Length == 0) {
throw new InvalidOperationException(SR.GetString(SR.WebPartConnection_ConsumerIDNotSet));
}
if (_webPartManager != null) {
return _webPartManager.WebParts[consumerID];
}
else {
return null;
}
}
}
// PERF: Consider caching
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public ConsumerConnectionPoint ConsumerConnectionPoint {
get {
WebPart consumer = Consumer;
if (consumer != null && _webPartManager != null) {
return _webPartManager.GetConsumerConnectionPoint(consumer, ConsumerConnectionPointID);
}
else {
return null;
}
}
}
[
DefaultValue(ConnectionPoint.DefaultIDInternal)
]
public string ConsumerConnectionPointID {
get {
//
return (!String.IsNullOrEmpty(_consumerConnectionPointID)) ?
_consumerConnectionPointID : ConnectionPoint.DefaultID;
}
set {
_consumerConnectionPointID = value;
}
}
[
DefaultValue("")
]
public string ConsumerID {
get {
return (_consumerID != null) ? _consumerID : String.Empty;
}
set {
_consumerID = value;
}
}
// True if this connection has been disconnected, but can not actually be removed.
// Either a static or a shared connection.
internal bool Deleted {
get {
return _deleted;
}
set {
_deleted = value;
}
}
[
DefaultValue("")
]
public string ID {
get {
return (_id != null) ? _id : String.Empty;
}
set {
_id = value;
}
}
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public bool IsActive {
get {
return _isActive;
}
}
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public bool IsShared {
get {
return _isShared;
}
}
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public bool IsStatic {
get {
return _isStatic;
}
}
// PERF: Consider caching
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public WebPart Provider {
get {
string providerID = ProviderID;
if (providerID.Length == 0) {
throw new InvalidOperationException(SR.GetString(SR.WebPartConnection_ProviderIDNotSet));
}
if (_webPartManager != null) {
return _webPartManager.WebParts[providerID];
}
else {
return null;
}
}
}
// PERF: Consider caching
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public ProviderConnectionPoint ProviderConnectionPoint {
get {
WebPart provider = Provider;
if (provider != null && _webPartManager != null) {
return _webPartManager.GetProviderConnectionPoint(provider, ProviderConnectionPointID);
}
else {
return null;
}
}
}
[
DefaultValue(ConnectionPoint.DefaultIDInternal)
]
public string ProviderConnectionPointID {
get {
//
return (!String.IsNullOrEmpty(_providerConnectionPointID)) ?
_providerConnectionPointID : ConnectionPoint.DefaultID;
}
set {
_providerConnectionPointID = value;
}
}
[
DefaultValue("")
]
public string ProviderID {
get {
return (_providerID != null) ? _providerID : String.Empty;
}
set {
_providerID = value;
}
}
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public WebPartTransformer Transformer {
get {
if (_transformers == null || _transformers.Count == 0) {
return null;
}
else {
return _transformers[0];
}
}
}
///
[
Browsable(false),
EditorBrowsable(EditorBrowsableState.Never),
PersistenceMode(PersistenceMode.InnerDefaultProperty),
]
public WebPartTransformerCollection Transformers {
get {
if (_transformers == null) {
_transformers = new WebPartTransformerCollection();
}
return _transformers;
}
}
internal void Activate() {
// This method should only be called on WebPartConnections in the WebPartManager, so
// _webPartManager should never be null.
Debug.Assert(_webPartManager != null);
Transformers.SetReadOnly();
WebPart providerWebPart = Provider;
// Cannot be null because Activate() is only called on valid Connections
Debug.Assert(providerWebPart != null);
WebPart consumerWebPart = Consumer;
// Cannot be null because Activate() is only called on valid Connections
Debug.Assert(consumerWebPart != null);
Control providerControl = providerWebPart.ToControl();
Control consumerControl = consumerWebPart.ToControl();
ProviderConnectionPoint providerConnectionPoint = ProviderConnectionPoint;
// Cannot be null because Activate() is only called on valid Connections
Debug.Assert(providerConnectionPoint != null);
if (!providerConnectionPoint.GetEnabled(providerControl)) {
consumerWebPart.SetConnectErrorMessage(SR.GetString(
SR.WebPartConnection_DisabledConnectionPoint, providerConnectionPoint.DisplayName, providerWebPart.DisplayTitle));
return;
}
ConsumerConnectionPoint consumerConnectionPoint = ConsumerConnectionPoint;
// Cannot be null because Activate() is only called on valid Connections
Debug.Assert(consumerConnectionPoint != null);
if (!consumerConnectionPoint.GetEnabled(consumerControl)) {
consumerWebPart.SetConnectErrorMessage(SR.GetString(
SR.WebPartConnection_DisabledConnectionPoint, consumerConnectionPoint.DisplayName, consumerWebPart.DisplayTitle));
return;
}
// Do not activate connections involving closed WebParts
if (!providerWebPart.IsClosed && !consumerWebPart.IsClosed) {
WebPartTransformer transformer = Transformer;
if (transformer == null) {
if (providerConnectionPoint.InterfaceType == consumerConnectionPoint.InterfaceType) {
ConnectionInterfaceCollection secondaryInterfaces = providerConnectionPoint.GetSecondaryInterfaces(providerControl);
if (consumerConnectionPoint.SupportsConnection(consumerControl, secondaryInterfaces)) {
object dataObject = providerConnectionPoint.GetObject(providerControl);
consumerConnectionPoint.SetObject(consumerControl, dataObject);
_isActive = true;
}
else {
consumerWebPart.SetConnectErrorMessage(SR.GetString(
SR.WebPartConnection_IncompatibleSecondaryInterfaces, new string[] {
consumerConnectionPoint.DisplayName, consumerWebPart.DisplayTitle,
providerConnectionPoint.DisplayName, providerWebPart.DisplayTitle}));
}
}
else {
consumerWebPart.SetConnectErrorMessage(SR.GetString(
SR.WebPartConnection_NoCommonInterface, new string[] {
providerConnectionPoint.DisplayName, providerWebPart.DisplayTitle,
consumerConnectionPoint.DisplayName, consumerWebPart.DisplayTitle}));
}
}
else {
Type transformerType = transformer.GetType();
if (!_webPartManager.AvailableTransformers.Contains(transformerType)) {
string errorMessage;
if (_webPartManager.Context != null && _webPartManager.Context.IsCustomErrorEnabled) {
errorMessage = SR.GetString(SR.WebPartConnection_TransformerNotAvailable);
}
else {
errorMessage = SR.GetString(
SR.WebPartConnection_TransformerNotAvailableWithType, transformerType.FullName);
}
consumerWebPart.SetConnectErrorMessage(errorMessage);
//
}
// Check matching interfaces on connection points and transformer attribute
Type transformerConsumerType = WebPartTransformerAttribute.GetConsumerType(transformerType);
Type transformerProviderType = WebPartTransformerAttribute.GetProviderType(transformerType);
if (providerConnectionPoint.InterfaceType == transformerConsumerType &&
transformerProviderType == consumerConnectionPoint.InterfaceType) {
// A transformer never provides any secondary interfaces
if (consumerConnectionPoint.SupportsConnection(consumerControl, ConnectionInterfaceCollection.Empty)) {
object dataObject = providerConnectionPoint.GetObject(providerControl);
object transformedObject = transformer.Transform(dataObject);
consumerConnectionPoint.SetObject(consumerControl, transformedObject);
_isActive = true;
}
else {
consumerWebPart.SetConnectErrorMessage(SR.GetString(
SR.WebPartConnection_ConsumerRequiresSecondaryInterfaces,
consumerConnectionPoint.DisplayName, consumerWebPart.DisplayTitle));
}
}
else if (providerConnectionPoint.InterfaceType != transformerConsumerType) {
string errorMessage;
if (_webPartManager.Context != null && _webPartManager.Context.IsCustomErrorEnabled) {
errorMessage = SR.GetString(
SR.WebPartConnection_IncompatibleProviderTransformer,
providerConnectionPoint.DisplayName, providerWebPart.DisplayTitle);
}
else {
errorMessage = SR.GetString(
SR.WebPartConnection_IncompatibleProviderTransformerWithType,
providerConnectionPoint.DisplayName, providerWebPart.DisplayTitle, transformerType.FullName);
}
consumerWebPart.SetConnectErrorMessage(errorMessage);
}
else {
string errorMessage;
if (_webPartManager.Context != null && _webPartManager.Context.IsCustomErrorEnabled) {
errorMessage = SR.GetString(
SR.WebPartConnection_IncompatibleConsumerTransformer,
consumerConnectionPoint.DisplayName, consumerWebPart.DisplayTitle);
}
else {
errorMessage = SR.GetString(
SR.WebPartConnection_IncompatibleConsumerTransformerWithType,
transformerType.FullName, consumerConnectionPoint.DisplayName, consumerWebPart.DisplayTitle);
}
consumerWebPart.SetConnectErrorMessage(errorMessage);
}
}
}
}
internal bool ConflictsWith(WebPartConnection otherConnection) {
return (ConflictsWithConsumer(otherConnection) || ConflictsWithProvider(otherConnection));
}
internal bool ConflictsWithConsumer(WebPartConnection otherConnection) {
return (!ConsumerConnectionPoint.AllowsMultipleConnections &&
Consumer == otherConnection.Consumer &&
ConsumerConnectionPoint == otherConnection.ConsumerConnectionPoint);
}
internal bool ConflictsWithProvider(WebPartConnection otherConnection) {
return (!ProviderConnectionPoint.AllowsMultipleConnections &&
Provider == otherConnection.Provider &&
ProviderConnectionPoint == otherConnection.ProviderConnectionPoint);
}
internal void SetIsShared(bool isShared) {
_isShared = isShared;
}
internal void SetIsStatic(bool isStatic) {
_isStatic = isStatic;
}
internal void SetTransformer(WebPartTransformer transformer) {
if (Transformers.Count == 0) {
Transformers.Add(transformer);
}
else {
Transformers[0] = transformer;
}
}
internal void SetWebPartManager(WebPartManager webPartManager) {
_webPartManager = webPartManager;
}
// Return the short typename, to improve the look of the collection editor in the designer
public override string ToString () {
return GetType().Name;
}
}
}
// 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
- XmlDataSource.cs
- GrammarBuilderWildcard.cs
- ConstraintCollection.cs
- LoginCancelEventArgs.cs
- ClosableStream.cs
- wgx_sdk_version.cs
- DataReaderContainer.cs
- PrintController.cs
- Component.cs
- XmlQueryOutput.cs
- DateTimeConstantAttribute.cs
- KnownColorTable.cs
- SmiEventStream.cs
- TreeNodeSelectionProcessor.cs
- BamlBinaryWriter.cs
- InternalReceiveMessage.cs
- HelpPage.cs
- SqlNodeTypeOperators.cs
- ComPlusContractBehavior.cs
- FontFamilyIdentifier.cs
- QueryExecutionOption.cs
- XmlDocumentSerializer.cs
- DirectionalLight.cs
- XamlPoint3DCollectionSerializer.cs
- MatcherBuilder.cs
- BinaryMessageEncodingBindingElement.cs
- NameValueCollection.cs
- GuidelineSet.cs
- ViewValidator.cs
- Messages.cs
- SwitchElementsCollection.cs
- InvokeMethodActivity.cs
- DelegateSerializationHolder.cs
- VectorCollection.cs
- SizeAnimationUsingKeyFrames.cs
- IsolatedStorageException.cs
- TcpClientChannel.cs
- AssociationEndMember.cs
- IFlowDocumentViewer.cs
- RectValueSerializer.cs
- NavigatorInput.cs
- PeerPresenceInfo.cs
- WhitespaceRuleReader.cs
- RootBrowserWindowAutomationPeer.cs
- DomainUpDown.cs
- TrustSection.cs
- LinqDataSourceInsertEventArgs.cs
- Separator.cs
- FocusManager.cs
- GrammarBuilderWildcard.cs
- AssemblyAssociatedContentFileAttribute.cs
- BoolExpr.cs
- ProfileEventArgs.cs
- RelativeSource.cs
- InkSerializer.cs
- TemplateContainer.cs
- FieldTemplateUserControl.cs
- X509PeerCertificateAuthentication.cs
- LambdaCompiler.Generated.cs
- SingleConverter.cs
- ToolStripSplitButton.cs
- MonthChangedEventArgs.cs
- CompilerScope.Storage.cs
- ContainerActivationHelper.cs
- AnnotationComponentChooser.cs
- SafeRightsManagementEnvironmentHandle.cs
- ScriptResourceInfo.cs
- ListControlActionList.cs
- ContractHandle.cs
- StorageComplexTypeMapping.cs
- ThemeDirectoryCompiler.cs
- path.cs
- TraceInternal.cs
- TextBoxAutomationPeer.cs
- SamlAssertionDirectKeyIdentifierClause.cs
- FlowNode.cs
- ExpressionReplacer.cs
- HttpModuleCollection.cs
- DetailsViewRow.cs
- LabelLiteral.cs
- Barrier.cs
- StylusEventArgs.cs
- BrowserCapabilitiesCodeGenerator.cs
- ObjectContext.cs
- SinglePhaseEnlistment.cs
- ThicknessAnimationUsingKeyFrames.cs
- InternalCache.cs
- ManagedWndProcTracker.cs
- SectionXmlInfo.cs
- AnnotationComponentManager.cs
- ClosableStream.cs
- Win32Interop.cs
- TerminateSequence.cs
- DrawingContext.cs
- CalendarTable.cs
- HtmlInputText.cs
- BuiltInExpr.cs
- StandardTransformFactory.cs
- TextFormatterContext.cs
- AgileSafeNativeMemoryHandle.cs