Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Configuration / TcpTransportSecurityElement.cs / 1 / TcpTransportSecurityElement.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Configuration { using System.Configuration; using System.ServiceModel.Channels; using System.Globalization; using System.Net; using System.Net.Security; using System.ServiceModel; using System.ServiceModel.Security; using System.ComponentModel; public sealed partial class TcpTransportSecurityElement : ConfigurationElement { [ConfigurationProperty(ConfigurationStrings.ClientCredentialType, DefaultValue = TcpTransportSecurity.DefaultClientCredentialType)] [ServiceModelEnumValidator(typeof(TcpClientCredentialTypeHelper))] public TcpClientCredentialType ClientCredentialType { get { return (TcpClientCredentialType)base[ConfigurationStrings.ClientCredentialType]; } set { base[ConfigurationStrings.ClientCredentialType] = value; } } [ConfigurationProperty(ConfigurationStrings.ProtectionLevel, DefaultValue = TcpTransportSecurity.DefaultProtectionLevel)] [ServiceModelEnumValidator(typeof(ProtectionLevelHelper))] public ProtectionLevel ProtectionLevel { get { return (ProtectionLevel)base[ConfigurationStrings.ProtectionLevel]; } set { base[ConfigurationStrings.ProtectionLevel] = value; } } internal void ApplyConfiguration(TcpTransportSecurity security) { if (security == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("security"); } security.ClientCredentialType = this.ClientCredentialType; security.ProtectionLevel = this.ProtectionLevel; } internal void InitializeFrom(TcpTransportSecurity security) { if (security == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("security"); } this.ClientCredentialType = security.ClientCredentialType; this.ProtectionLevel = security.ProtectionLevel; } } } // 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
- AppDomainProtocolHandler.cs
- Version.cs
- VirtualizingPanel.cs
- ItemsChangedEventArgs.cs
- RootBrowserWindowAutomationPeer.cs
- PrinterResolution.cs
- TextStore.cs
- PixelShader.cs
- ProcessInfo.cs
- AccessViolationException.cs
- EncoderParameter.cs
- OutputCacheSettings.cs
- StreamMarshaler.cs
- ExceptionValidationRule.cs
- PageSetupDialog.cs
- Style.cs
- ClonableStack.cs
- Int32CAMarshaler.cs
- UserPreferenceChangedEventArgs.cs
- XmlRootAttribute.cs
- GenericEnumerator.cs
- TimerEventSubscription.cs
- CustomAttribute.cs
- QualifiedId.cs
- SiteMapPathDesigner.cs
- LateBoundChannelParameterCollection.cs
- PeerNameRegistration.cs
- QueryStringConverter.cs
- SQLInt16.cs
- LocatorManager.cs
- UpdateCommand.cs
- OpenTypeLayoutCache.cs
- DbXmlEnabledProviderManifest.cs
- InvalidEnumArgumentException.cs
- UpDownBase.cs
- DataGridViewAccessibleObject.cs
- SignatureDescription.cs
- HtmlInputRadioButton.cs
- RecommendedAsConfigurableAttribute.cs
- EntityParameter.cs
- Button.cs
- ISAPIApplicationHost.cs
- HwndHostAutomationPeer.cs
- HostedTransportConfigurationManager.cs
- SQLDateTimeStorage.cs
- FlowDecision.cs
- MediaContext.cs
- RelationshipSet.cs
- FormatSettings.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- NodeFunctions.cs
- DataViewManagerListItemTypeDescriptor.cs
- TreeViewCancelEvent.cs
- CompModHelpers.cs
- FixedSOMTable.cs
- CqlLexerHelpers.cs
- SequentialUshortCollection.cs
- WebPartTracker.cs
- ViewSimplifier.cs
- Composition.cs
- ReadOnlyDictionary.cs
- XamlSerializationHelper.cs
- CurrentChangingEventArgs.cs
- ToolboxItemSnapLineBehavior.cs
- Bidi.cs
- _DomainName.cs
- ProcessHostFactoryHelper.cs
- ObjectStateEntryDbDataRecord.cs
- SortedList.cs
- SecurityKeyIdentifierClause.cs
- DispatcherTimer.cs
- HighlightComponent.cs
- DataPagerCommandEventArgs.cs
- XsltFunctions.cs
- ClientSettingsProvider.cs
- HwndProxyElementProvider.cs
- HtmlEmptyTagControlBuilder.cs
- ResourceDescriptionAttribute.cs
- CodeThrowExceptionStatement.cs
- RuntimeArgument.cs
- InputManager.cs
- HijriCalendar.cs
- Token.cs
- WinEventTracker.cs
- CompensatableSequenceActivity.cs
- WebSysDisplayNameAttribute.cs
- UrlPath.cs
- DataGridItem.cs
- LocatorManager.cs
- SafeSecurityHelper.cs
- SiteMapProvider.cs
- TimeoutValidationAttribute.cs
- _UncName.cs
- PathFigure.cs
- ConfigUtil.cs
- XPathException.cs
- ObjectStateEntryDbDataRecord.cs
- BaseCollection.cs
- ReflectEventDescriptor.cs
- XhtmlTextWriter.cs