Files
linux-packaging-mono/mcs/class/System.DirectoryServices/Documentation/en/System.DirectoryServices/ReferralChasingOption.xml
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

156 lines
7.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Type Name="ReferralChasingOption" FullName="System.DirectoryServices.ReferralChasingOption">
<TypeSignature Language="C#" Value="public sealed enum ReferralChasingOption" />
<AssemblyInfo>
<AssemblyName>System.DirectoryServices</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyCulture>
</AssemblyCulture>
<Attributes>
<Attribute>
<AttributeName>System.Reflection.AssemblyKeyFile(KeyFile="../msfinal.pub")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Reflection.AssemblyDelaySign(DelaySign=True)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Runtime.InteropServices.ComVisible(Value=False)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Resources.NeutralResourcesLanguage(CultureName="en-US")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Reflection.AssemblyInformationalVersion(InformationalVersion="0.0.0.1")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Reflection.AssemblyDefaultAlias(DefaultAlias="System.DirectoryServices.dll")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.CLSCompliant(IsCompliant=True)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Reflection.AssemblyTrademark(Trademark="")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Reflection.AssemblyCopyright(Copyright="(c) 2003 Various Authors")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Reflection.AssemblyProduct(Product="MONO CLI")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Reflection.AssemblyCompany(Company="MONO development team")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Reflection.AssemblyConfiguration(Configuration="Development version")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Reflection.AssemblyDescription(Description="System.DirectoryServices.dll")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Reflection.AssemblyTitle(Title="System.DirectoryServices.dll")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Resources.SatelliteContractVersion(Version="1.0.5000.0")</AttributeName>
</Attribute>
</Attributes>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Enum</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.IComparable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IConvertible</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IFormattable</InterfaceName>
</Interface>
</Interfaces>
<Members>
<Member MemberName="value__">
<MemberSignature Language="C#" Value="public int value__" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="All">
<MemberSignature Language="C#" Value="public static const System.DirectoryServices.ReferralChasingOption All" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.DirectoryServices.ReferralChasingOption</ReturnType>
</ReturnValue>
<MemberValue>All</MemberValue>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Chase referrals of either the subordinate or external type.</para>
</summary>
</Docs>
</Member>
<Member MemberName="External">
<MemberSignature Language="C#" Value="public static const System.DirectoryServices.ReferralChasingOption External" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.DirectoryServices.ReferralChasingOption</ReturnType>
</ReturnValue>
<MemberValue>External</MemberValue>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Chase external referrals. If no referral chasing option is specified for a directory search, the type of referral chasing performed is <see cref="F:System.DirectoryServices.ReferralChasingOption.External" />.</para>
</summary>
</Docs>
</Member>
<Member MemberName="None">
<MemberSignature Language="C#" Value="public static const System.DirectoryServices.ReferralChasingOption None" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.DirectoryServices.ReferralChasingOption</ReturnType>
</ReturnValue>
<MemberValue>None</MemberValue>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Never chase the referred-to server. Setting this option prevents a client from contacting other servers in a referral process.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Subordinate">
<MemberSignature Language="C#" Value="public static const System.DirectoryServices.ReferralChasingOption Subordinate" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.DirectoryServices.ReferralChasingOption</ReturnType>
</ReturnValue>
<MemberValue>Subordinate</MemberValue>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Chase only subordinate referrals that are a subordinate naming context in a directory tree. The ADSI LDAP provider always turns off this flag for paged searches.</para>
</summary>
</Docs>
</Member>
</Members>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When a server determines that other servers hold relevant information the server might refer the client to another server to obtain the result. Referral chasing is the process by which a client contacts the referenced server to continue the directory search.</para>
<para>Use the constants of this enumeration to set up search preferences for referral chasing. The action involves assigning the appropriate fields of <see cref="T:System.DirectoryServices.DirectorySearcher" /> to elements of the <see cref="T:System.DirectoryServices.ReferralChasingOption" /> enumeration.</para>
<para>The ADSI LDAP provider supports external referrals for paged searches, but does not support subordinate referrals during paging.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.DirectoryServices.ReferralChasingOption" /> enumeration specifies if and how referral chasing is pursued. </para>
</summary>
</Docs>
</Type>