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
- StringAnimationUsingKeyFrames.cs
- DrawItemEvent.cs
- RectangleF.cs
- CalendarDay.cs
- DirectoryNotFoundException.cs
- RijndaelCryptoServiceProvider.cs
- TypeResolvingOptionsAttribute.cs
- FrameAutomationPeer.cs
- XmlSchemaRedefine.cs
- Quad.cs
- ServiceModelActivationSectionGroup.cs
- XmlConvert.cs
- PropertyMetadata.cs
- PropertyInfoSet.cs
- ObjectStorage.cs
- DataSetUtil.cs
- ManipulationDelta.cs
- FamilyMapCollection.cs
- InternalCache.cs
- NamedElement.cs
- UserNameServiceElement.cs
- SmtpAuthenticationManager.cs
- Ops.cs
- Certificate.cs
- MetabaseReader.cs
- PagePropertiesChangingEventArgs.cs
- SQLInt64.cs
- XmlDownloadManager.cs
- TypeNameHelper.cs
- TextElementEnumerator.cs
- StrokeCollectionDefaultValueFactory.cs
- LostFocusEventManager.cs
- DataControlFieldCollection.cs
- CompositeCollection.cs
- MediaContext.cs
- SystemUnicastIPAddressInformation.cs
- SqlDeflator.cs
- SpeakCompletedEventArgs.cs
- UnmanagedMarshal.cs
- ResumeStoryboard.cs
- _NtlmClient.cs
- WebConfigurationManager.cs
- ControlValuePropertyAttribute.cs
- PopupControlService.cs
- DataGridViewIntLinkedList.cs
- listitem.cs
- DataGridViewHeaderCell.cs
- SafeMILHandleMemoryPressure.cs
- MobileTextWriter.cs
- SQLBytesStorage.cs
- NotifyInputEventArgs.cs
- TreeViewEvent.cs
- HtmlInputText.cs
- XPathNodeHelper.cs
- HelpPage.cs
- DateTimeSerializationSection.cs
- XmlWrappingReader.cs
- WorkflowTransactionOptions.cs
- WebPartConnectionsCancelVerb.cs
- DesignerAdapterAttribute.cs
- SwitchElementsCollection.cs
- StylusDevice.cs
- HTMLTagNameToTypeMapper.cs
- RepeaterItemCollection.cs
- EditorPart.cs
- ForeignKeyConstraint.cs
- MemberDescriptor.cs
- ProjectionPlan.cs
- OneOfElement.cs
- ISFClipboardData.cs
- Label.cs
- CryptoKeySecurity.cs
- IsolatedStorage.cs
- ConstructorArgumentAttribute.cs
- ScrollItemProviderWrapper.cs
- SourceLocation.cs
- MenuItem.cs
- PingReply.cs
- LayoutDump.cs
- ToolBarTray.cs
- WeakEventTable.cs
- VisualProxy.cs
- SymmetricSecurityProtocolFactory.cs
- RoleGroupCollection.cs
- smtppermission.cs
- URLIdentityPermission.cs
- TranslateTransform.cs
- _HTTPDateParse.cs
- UncommonField.cs
- AmbientProperties.cs
- Util.cs
- ThaiBuddhistCalendar.cs
- TextServicesDisplayAttribute.cs
- InternalSafeNativeMethods.cs
- TreeNodeConverter.cs
- SoapMessage.cs
- FlowDocumentPaginator.cs
- InputBinding.cs
- ActivityDesignerLayoutSerializers.cs
- IERequestCache.cs