Class XmlRpcClientSection
Represents the configuration section used to declarativly configure the XmlRpcClient class. This class cannot be inheritied.
Inheritance
System.Object
System.Configuration.ConfigurationElement
System.Configuration.ConfigurationSection
XmlRpcClientSection
Inherited Members
System.Configuration.ConfigurationSection.DeserializeSection(System.Xml.XmlReader)
System.Configuration.ConfigurationSection.GetRuntimeObject()
System.Configuration.ConfigurationSection.IsModified()
System.Configuration.ConfigurationSection.ResetModified()
System.Configuration.ConfigurationSection.SerializeSection(System.Configuration.ConfigurationElement, System.String, System.Configuration.ConfigurationSaveMode)
System.Configuration.ConfigurationSection.ShouldSerializeElementInTargetVersion(System.Configuration.ConfigurationElement, System.String, System.Runtime.Versioning.FrameworkName)
System.Configuration.ConfigurationSection.ShouldSerializePropertyInTargetVersion(System.Configuration.ConfigurationProperty, System.String, System.Runtime.Versioning.FrameworkName, System.Configuration.ConfigurationElement)
System.Configuration.ConfigurationSection.ShouldSerializeSectionInTargetVersion(System.Runtime.Versioning.FrameworkName)
System.Configuration.ConfigurationSection.SectionInformation
System.Configuration.ConfigurationElement.DeserializeElement(System.Xml.XmlReader, System.Boolean)
System.Configuration.ConfigurationElement.Equals(System.Object)
System.Configuration.ConfigurationElement.GetHashCode()
System.Configuration.ConfigurationElement.GetTransformedAssemblyString(System.String)
System.Configuration.ConfigurationElement.GetTransformedTypeString(System.String)
System.Configuration.ConfigurationElement.Init()
System.Configuration.ConfigurationElement.InitializeDefault()
System.Configuration.ConfigurationElement.IsReadOnly()
System.Configuration.ConfigurationElement.ListErrors(System.Collections.IList)
System.Configuration.ConfigurationElement.OnDeserializeUnrecognizedAttribute(System.String, System.String)
System.Configuration.ConfigurationElement.OnDeserializeUnrecognizedElement(System.String, System.Xml.XmlReader)
System.Configuration.ConfigurationElement.OnRequiredPropertyNotFound(System.String)
System.Configuration.ConfigurationElement.PostDeserialize()
System.Configuration.ConfigurationElement.PreSerialize(System.Xml.XmlWriter)
System.Configuration.ConfigurationElement.Reset(System.Configuration.ConfigurationElement)
System.Configuration.ConfigurationElement.SerializeElement(System.Xml.XmlWriter, System.Boolean)
System.Configuration.ConfigurationElement.SerializeToXmlElement(System.Xml.XmlWriter, System.String)
System.Configuration.ConfigurationElement.SetPropertyValue(System.Configuration.ConfigurationProperty, System.Object, System.Boolean)
System.Configuration.ConfigurationElement.SetReadOnly()
System.Configuration.ConfigurationElement.Unmerge(System.Configuration.ConfigurationElement, System.Configuration.ConfigurationElement, System.Configuration.ConfigurationSaveMode)
System.Configuration.ConfigurationElement.CurrentConfiguration
System.Configuration.ConfigurationElement.ElementInformation
System.Configuration.ConfigurationElement.ElementProperty
System.Configuration.ConfigurationElement.EvaluationContext
System.Configuration.ConfigurationElement.HasContext
System.Configuration.ConfigurationElement.Item[System.Configuration.ConfigurationProperty]
System.Configuration.ConfigurationElement.Item[System.String]
System.Configuration.ConfigurationElement.LockAllAttributesExcept
System.Configuration.ConfigurationElement.LockAllElementsExcept
System.Configuration.ConfigurationElement.LockAttributes
System.Configuration.ConfigurationElement.LockElements
System.Configuration.ConfigurationElement.LockItem
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: Argotic.Core.dll
Syntax
public sealed class XmlRpcClientSection : ConfigurationSection
Constructors
|
Improve this Doc
View Source
XmlRpcClientSection()
Declaration
public XmlRpcClientSection()
Properties
|
Improve this Doc
View Source
Network
Gets the network connection information.
Declaration
[ConfigurationProperty("network", DefaultValue = null, Options = ConfigurationPropertyOptions.None)]
public XmlRpcClientNetworkElement Network { get; }
Property Value
|
Improve this Doc
View Source
Properties
Gets the configuration properties for this section.
Declaration
protected override ConfigurationPropertyCollection Properties { get; }
Property Value
Type |
Description |
System.Configuration.ConfigurationPropertyCollection |
A System.Configuration.ConfigurationPropertyCollection object that represents the configuration properties for this section.
|
Overrides
System.Configuration.ConfigurationElement.Properties
|
Improve this Doc
View Source
Timeout
Gets or sets a value that specifies the amount of time after which asynchronous send operations will time out.
Declaration
[ConfigurationProperty("timeout", DefaultValue = "0:0:15.0", Options = ConfigurationPropertyOptions.None)]
[TypeConverter(typeof(TimeSpan))]
public TimeSpan Timeout { get; set; }
Property Value
Type |
Description |
System.TimeSpan |
A System.TimeSpan that specifies the time-out period. The default value is 15 seconds.
|
|
Improve this Doc
View Source
UserAgent
Gets or sets information such as the client application name, version, host operating system, and language.
Declaration
[ConfigurationProperty("agent", DefaultValue = "", Options = ConfigurationPropertyOptions.None)]
public string UserAgent { get; set; }
Property Value
Type |
Description |
System.String |
A string that represents information such as the client application name, version, host operating system, and language.
|