1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="CustomErrorsMode" FullName="System.Web.Configuration.CustomErrorsMode">
<TypeSignature Language="C#" Value="public enum CustomErrorsMode" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Enum</BaseTypeName>
</Base>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.Configuration.CustomErrorsMode" /> enumerates the values you can use when setting the <see cref="P:System.Web.Configuration.CustomErrorsSection.Mode" /> property. These values define whether custom errors are enabled, disabled, or shown only to remote clients. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Specifies the values for the custom errors modality.</para>
</summary>
</Docs>
<Members>
<Member MemberName="Off">
<MemberSignature Language="C#" Value="Off" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Web.Configuration.CustomErrorsMode</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Disables custom errors, allowing display of standard errors.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="On">
<MemberSignature Language="C#" Value="On" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Web.Configuration.CustomErrorsMode</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Enables custom errors. If no <see cref="P:System.Web.Configuration.CustomErrorsSection.DefaultRedirect" /> is specified, standard errors are issued. </para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RemoteOnly">
<MemberSignature Language="C#" Value="RemoteOnly" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Web.Configuration.CustomErrorsMode</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Enables custom errors on remote clients only. Custom errors are shown only to remote clients and ASP.NET errors are shown to the local host.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
</Type>
|