Show / Hide Table of Contents

Class XmlRpcClientNetworkElement

Represents the the network element in the XML-RPC XmlRpcClientSection. This class cannot be inheritied.

Inheritance
System.Object
System.Configuration.ConfigurationElement
XmlRpcClientNetworkElement
Inherited Members
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.IsModified()
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.ResetModified()
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()
Namespace: Argotic.Configuration
Assembly: Argotic.Core.dll
Syntax
public sealed class XmlRpcClientNetworkElement : ConfigurationElement

Constructors

| Improve this Doc View Source

XmlRpcClientNetworkElement()

Initializes a new instance of the XmlRpcClientNetworkElement class.

Declaration
public XmlRpcClientNetworkElement()

Properties

| Improve this Doc View Source

Credential

Returns a System.Net.NetworkCredential for the configured user name, password, and domain.

Declaration
public NetworkCredential Credential { get; }
Property Value
Type Description
System.Net.NetworkCredential

A System.Net.NetworkCredential object initialized using the curent UserName, Password, and Domain.

Remarks

If UserName is a null or empty string, returns a null reference.

| Improve this Doc View Source

DefaultCredentials

Gets or sets a System.Boolean value that controls whether the System.Net.CredentialCache.DefaultCredentials are sent with requests.

Declaration
[ConfigurationProperty("defaultCredentials", DefaultValue = false, Options = ConfigurationPropertyOptions.None)]
[TypeConverter(typeof(bool))]
public bool DefaultCredentials { get; set; }
Property Value
Type Description
System.Boolean

true indicates that default user credentials will be used to access the XML-RPC server; otherwise, false.

| Improve this Doc View Source

Domain

Gets or sets the domain or computer name that verifies the network credentials.

Declaration
[ConfigurationProperty("domain", DefaultValue = "", Options = ConfigurationPropertyOptions.None)]
public string Domain { get; set; }
Property Value
Type Description
System.String

A string that represents the domain or computer name that verifies the network credentials.

See Also
System.Net.NetworkCredential.Domain
| Improve this Doc View Source

Host

Gets or sets the location of the host computer that client remote procedure calls will be sent to.

Declaration
[ConfigurationProperty("host", DefaultValue = null, Options = ConfigurationPropertyOptions.None)]
[TypeConverter(typeof(Uri))]
public Uri Host { get; set; }
Property Value
Type Description
System.Uri

A System.Uri that represents the URL of the host computer used for XML-RPC transactions.

| Improve this Doc View Source

Password

Gets or sets the user password to use to connect to an XML-RPC server.

Declaration
[ConfigurationProperty("password", DefaultValue = "", Options = ConfigurationPropertyOptions.None)]
public string Password { get; set; }
Property Value
Type Description
System.String

A string that represents the password to use to connect to an XML-RPC server.

See Also
System.Net.NetworkCredential.Password
| Improve this Doc View Source

Properties

Gets the configuration properties for this element.

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 element.

Overrides
System.Configuration.ConfigurationElement.Properties
| Improve this Doc View Source

UserName

Gets or sets the user name to connect to an XML-RPC server.

Declaration
[ConfigurationProperty("userName", DefaultValue = "", Options = ConfigurationPropertyOptions.None)]
public string UserName { get; set; }
Property Value
Type Description
System.String

A string that represents the user name to connect to an XML-RPC server.

See Also
System.Net.NetworkCredential.UserName

See Also

XmlRpcClientSection
  • Improve this Doc
  • View Source
Back to top Generated by DocFX