Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Configuration / CertificateReferenceElement.cs / 1 / CertificateReferenceElement.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Configuration { using System; using System.ServiceModel; using System.Configuration; using System.IdentityModel.Claims; using System.IdentityModel.Policy; using System.Security.Cryptography; using System.Security.Cryptography.X509Certificates; using System.Xml; public sealed partial class CertificateReferenceElement : ConfigurationElement { public CertificateReferenceElement() { } [ConfigurationProperty(ConfigurationStrings.StoreName, DefaultValue = EndpointIdentity.defaultStoreName)] [StandardRuntimeEnumValidator(typeof(StoreName))] public StoreName StoreName { get { return (StoreName)base[ConfigurationStrings.StoreName]; } set { base[ConfigurationStrings.StoreName] = value; } } [ConfigurationProperty(ConfigurationStrings.StoreLocation, DefaultValue = EndpointIdentity.defaultStoreLocation)] [StandardRuntimeEnumValidator(typeof(StoreLocation))] public StoreLocation StoreLocation { get { return (StoreLocation)base[ConfigurationStrings.StoreLocation]; } set { base[ConfigurationStrings.StoreLocation] = value; } } [ConfigurationProperty(ConfigurationStrings.X509FindType, DefaultValue = EndpointIdentity.defaultX509FindType)] [StandardRuntimeEnumValidator(typeof(X509FindType))] public X509FindType X509FindType { get { return (X509FindType)base[ConfigurationStrings.X509FindType]; } set { base[ConfigurationStrings.X509FindType] = value; } } [ConfigurationProperty(ConfigurationStrings.FindValue, DefaultValue = "")] [StringValidator(MinLength = 0)] public string FindValue { get { return (string)base[ConfigurationStrings.FindValue]; } set { if (String.IsNullOrEmpty(value)) { value = String.Empty; } base[ConfigurationStrings.FindValue] = value; } } [ConfigurationProperty(ConfigurationStrings.IsChainIncluded, DefaultValue = false)] public bool IsChainIncluded { get { return (bool)base[ConfigurationStrings.IsChainIncluded]; } set { base[ConfigurationStrings.IsChainIncluded] = value; } } } } // 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
- GridViewRow.cs
- ClassicBorderDecorator.cs
- SortQuery.cs
- EmptyEnumerable.cs
- ConfigXmlWhitespace.cs
- IpcClientManager.cs
- PresentationAppDomainManager.cs
- PnrpPermission.cs
- RemotingConfiguration.cs
- CellNormalizer.cs
- ContextProperty.cs
- OdbcStatementHandle.cs
- HijriCalendar.cs
- TableRow.cs
- Int64Storage.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- KeyValueSerializer.cs
- Simplifier.cs
- RoleService.cs
- XmlHierarchicalEnumerable.cs
- SslStream.cs
- SynchronizedInputPattern.cs
- TraceFilter.cs
- MsmqDiagnostics.cs
- Material.cs
- FrameworkObject.cs
- RSAPKCS1SignatureDeformatter.cs
- WinFormsSpinner.cs
- Win32Native.cs
- SessionState.cs
- NamedPipeProcessProtocolHandler.cs
- ToolZoneDesigner.cs
- SmiEventSink_Default.cs
- SemanticBasicElement.cs
- CellCreator.cs
- DeviceContexts.cs
- PointHitTestResult.cs
- FixedSOMLineRanges.cs
- UrlAuthFailedErrorFormatter.cs
- FormViewPageEventArgs.cs
- ListControlDesigner.cs
- OleDbReferenceCollection.cs
- String.cs
- ActivationServices.cs
- SqlClientFactory.cs
- Condition.cs
- QilPatternVisitor.cs
- AdRotator.cs
- ManagedIStream.cs
- SizeKeyFrameCollection.cs
- DesignerAutoFormatStyle.cs
- InvokeDelegate.cs
- WeakRefEnumerator.cs
- SignatureToken.cs
- Italic.cs
- _SSPIWrapper.cs
- UInt16.cs
- InvalidDataException.cs
- SelectedGridItemChangedEvent.cs
- EventLogEntryCollection.cs
- DependencyPropertyHelper.cs
- PageOutputQuality.cs
- TableLayoutPanelCellPosition.cs
- _AutoWebProxyScriptWrapper.cs
- ExplicitDiscriminatorMap.cs
- RandomNumberGenerator.cs
- TargetPerspective.cs
- DateTimeParse.cs
- TreeNodeBindingCollection.cs
- DataGridItemAutomationPeer.cs
- CodeArgumentReferenceExpression.cs
- TraceSection.cs
- MetadataArtifactLoaderComposite.cs
- ActivityExecutorOperation.cs
- Italic.cs
- RichTextBoxAutomationPeer.cs
- TimeSpanSecondsConverter.cs
- TemplateBindingExtension.cs
- SerialStream.cs
- ConfigXmlElement.cs
- SrgsNameValueTag.cs
- RegistrySecurity.cs
- CodeTypeReferenceCollection.cs
- DiscoveryMessageProperty.cs
- FileDialog.cs
- MexHttpBindingCollectionElement.cs
- CompiledELinqQueryState.cs
- MimeMultiPart.cs
- relpropertyhelper.cs
- ObjectDataSourceDisposingEventArgs.cs
- CustomErrorsSectionWrapper.cs
- TrustSection.cs
- TextInfo.cs
- WindowsSecurityTokenAuthenticator.cs
- DataSourceBooleanViewSchemaConverter.cs
- GridView.cs
- WebPageTraceListener.cs
- MailWebEventProvider.cs
- InkCanvasSelectionAdorner.cs
- ValueSerializer.cs