Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx35 / System.WorkflowServices / System / Workflow / Activities / LogicalChannel.cs / 1305376 / LogicalChannel.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.Workflow.Activities { using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.ComponentModel; using System.ComponentModel.Design; using System.ComponentModel.Design.Serialization; using System.Diagnostics.CodeAnalysis; using System.ServiceModel; using System.ServiceModel.Channels; using System.ServiceModel.Dispatcher; using System.Workflow.ComponentModel; using System.Workflow.ComponentModel.Design; using System.Workflow.ComponentModel.Serialization; using System.Xml; [Serializable] internal sealed class LogicalChannel { string configurationName = string.Empty; IDictionarycontext = SerializableReadOnlyDictionary .Empty; Type contractType = null; string customAddress = null; bool initialized = false; Guid instanceId; string name = null; public LogicalChannel() { this.instanceId = Guid.NewGuid(); } public LogicalChannel(string name, Type contractType) { this.instanceId = Guid.NewGuid(); this.name = name; this.contractType = contractType; } [DefaultValue(null)] [Browsable(false)] public string ConfigurationName { get { return this.configurationName; } } [Browsable(false)] public IDictionary Context { get { return this.context; } set { if (value != null) { this.context = new ContextDictionary(value); } else { this.context = SerializableReadOnlyDictionary .Empty; } } } [DefaultValue(null)] [Browsable(false)] public Type ContractType { get { return this.contractType; } } [DefaultValue(null)] [Browsable(false)] public string CustomAddress { get { return this.customAddress; } } [DefaultValue(false)] [Browsable(false)] public bool Initialized { get { return this.initialized; } } [DefaultValue(null)] [Browsable(false)] public string Name { get { return this.name; } } internal Guid InstanceId { get { return this.instanceId; } } public void Initialize(string configurationName, string customAddress) { if (this.Initialized) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError( new InvalidOperationException(SR2.GetString(SR2.Error_LogicalChannelAlreadyInitialized, this.Name))); } this.configurationName = configurationName ?? string.Empty; this.customAddress = customAddress; this.initialized = true; } } } // 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
- CompilerScopeManager.cs
- SignerInfo.cs
- IntPtr.cs
- ViewStateAttachedPropertyFeature.cs
- HttpCachePolicyWrapper.cs
- UserControlParser.cs
- XmlHierarchicalDataSourceView.cs
- QueryOutputWriter.cs
- RuntimeCompatibilityAttribute.cs
- SafeFreeMibTable.cs
- CardSpaceException.cs
- QilCloneVisitor.cs
- COM2PictureConverter.cs
- AddInContractAttribute.cs
- OleDbReferenceCollection.cs
- SchemaCollectionCompiler.cs
- Panel.cs
- UpDownEvent.cs
- Visual.cs
- FactoryGenerator.cs
- IntegrationExceptionEventArgs.cs
- MessageHeaderAttribute.cs
- DeferredReference.cs
- DecoderFallback.cs
- DataTemplateKey.cs
- _HeaderInfo.cs
- NetStream.cs
- Rotation3DAnimation.cs
- PageClientProxyGenerator.cs
- Transaction.cs
- CheckBoxBaseAdapter.cs
- EmbossBitmapEffect.cs
- SmtpFailedRecipientException.cs
- XmlObjectSerializer.cs
- ImpersonateTokenRef.cs
- UniqueIdentifierService.cs
- BufferedStream.cs
- EditCommandColumn.cs
- StrongNameKeyPair.cs
- DbDataSourceEnumerator.cs
- ExpressionVisitor.cs
- RemoteWebConfigurationHost.cs
- AnimationStorage.cs
- HijriCalendar.cs
- EmptyEnumerator.cs
- AncillaryOps.cs
- _SslState.cs
- CollectionViewGroup.cs
- ToolStripGrip.cs
- ProcessHostMapPath.cs
- WindowsListViewGroupHelper.cs
- ConsoleTraceListener.cs
- RIPEMD160.cs
- DES.cs
- ThreadStateException.cs
- DbConnectionHelper.cs
- WindowsBrush.cs
- DrawingImage.cs
- SaveFileDialog.cs
- XPathNavigatorKeyComparer.cs
- UIElementAutomationPeer.cs
- StringBlob.cs
- TableCellCollection.cs
- Int16Animation.cs
- BindableTemplateBuilder.cs
- KeyValueSerializer.cs
- DataSetMappper.cs
- ErasingStroke.cs
- LoaderAllocator.cs
- IgnoreFileBuildProvider.cs
- TogglePattern.cs
- TextSelectionHelper.cs
- LinqMaximalSubtreeNominator.cs
- HeaderUtility.cs
- Int32CAMarshaler.cs
- jithelpers.cs
- PauseStoryboard.cs
- SortableBindingList.cs
- AddInToken.cs
- SystemTcpConnection.cs
- WebMessageEncodingElement.cs
- ToolStripStatusLabel.cs
- FocusChangedEventArgs.cs
- ServiceModelSecurityTokenTypes.cs
- SessionStateItemCollection.cs
- FontStretch.cs
- SystemIPv4InterfaceProperties.cs
- ServiceDefaults.cs
- CapabilitiesAssignment.cs
- LogicalMethodInfo.cs
- ZipIOBlockManager.cs
- ClientScriptManager.cs
- ScriptModule.cs
- SocketException.cs
- FormsAuthenticationUserCollection.cs
- Claim.cs
- NumberFunctions.cs
- Permission.cs
- FutureFactory.cs
- DecimalStorage.cs