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
- DocumentGridPage.cs
- BufferedWebEventProvider.cs
- ExitEventArgs.cs
- MetadataException.cs
- ToolStripSplitButton.cs
- FileUtil.cs
- ToolStripSeparatorRenderEventArgs.cs
- CrossContextChannel.cs
- DataListAutoFormat.cs
- ContactManager.cs
- OdbcCommandBuilder.cs
- ForeignKeyConstraint.cs
- Vector3dCollection.cs
- SmtpTransport.cs
- HandlerFactoryWrapper.cs
- AssemblyInfo.cs
- ObjRef.cs
- ClientOperation.cs
- MouseGestureValueSerializer.cs
- GlyphRun.cs
- Authorization.cs
- SecurityResources.cs
- Single.cs
- TextEffect.cs
- UTF32Encoding.cs
- ServiceContractViewControl.Designer.cs
- SystemUnicastIPAddressInformation.cs
- Number.cs
- ComponentGlyph.cs
- CodeValidator.cs
- IPAddress.cs
- TypeLoadException.cs
- ValidateNames.cs
- EqualityComparer.cs
- TransactionBehavior.cs
- TextTreeRootTextBlock.cs
- GridViewUpdateEventArgs.cs
- TimeEnumHelper.cs
- WebPartManager.cs
- Int32CAMarshaler.cs
- DependencyPropertyKey.cs
- CompositeDesignerAccessibleObject.cs
- WebBrowserPermission.cs
- ServiceModelSectionGroup.cs
- SocketInformation.cs
- FactoryGenerator.cs
- MemberExpression.cs
- TextServicesDisplayAttribute.cs
- JsonSerializer.cs
- OrderByLifter.cs
- MetroSerializationManager.cs
- XmlDictionaryReaderQuotas.cs
- Marshal.cs
- StylusEditingBehavior.cs
- PropVariant.cs
- NetworkStream.cs
- DataViewSetting.cs
- CodeExporter.cs
- FileStream.cs
- DataObjectMethodAttribute.cs
- DirectoryRedirect.cs
- EventSource.cs
- ContextMenuStrip.cs
- PartBasedPackageProperties.cs
- AccessKeyManager.cs
- XmlBinaryReader.cs
- CodeTypeDeclaration.cs
- CustomPopupPlacement.cs
- IdentityHolder.cs
- MetadataWorkspace.cs
- Psha1DerivedKeyGenerator.cs
- ResourceDescriptionAttribute.cs
- ProcessModelInfo.cs
- DataGridViewTextBoxEditingControl.cs
- EntityDataSourceState.cs
- RemotingAttributes.cs
- TextRangeEdit.cs
- ExceptionUtility.cs
- CodeMethodInvokeExpression.cs
- LicenseManager.cs
- MessageBox.cs
- FieldAccessException.cs
- ActivityLocationReferenceEnvironment.cs
- ReferencedType.cs
- EntityConnectionStringBuilder.cs
- CanonicalXml.cs
- SqlDataSourceView.cs
- CodeTypeDeclaration.cs
- InstanceContext.cs
- IdentifierCreationService.cs
- PseudoWebRequest.cs
- RuleInfoComparer.cs
- WsdlHelpGeneratorElement.cs
- RequestUriProcessor.cs
- ComplexLine.cs
- EmptyStringExpandableObjectConverter.cs
- LinkLabel.cs
- EncryptedReference.cs
- MarkerProperties.cs
- XmlUtil.cs