NotepadUltra/Notepad Ultra/bin/Debug/PostSharp.xml

11741 lines
650 KiB
XML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>PostSharp</name>
</assembly>
<members>
<member name="T:PostSharp.IgnoreWarningAttribute">
<summary>
Instructs PostSharp to ignore warnings and information messages. Errors cannot be ignored.
</summary>
</member>
<member name="M:PostSharp.IgnoreWarningAttribute.#ctor(System.String)">
<summary>
Creates a new instance of <see cref="T:PostSharp.IgnoreWarningAttribute" />.
</summary>
<param name="messageId">Identifier of the ignored warning.</param>
</member>
<member name="P:PostSharp.IgnoreWarningAttribute.MessageId">
<summary>
Gets the identifier of the ignored warning.
</summary>
</member>
<member name="P:PostSharp.IgnoreWarningAttribute.Reason">
<summary>
Gets or set the reason (a human-readable text) why the warning must be ignored.
</summary>
</member>
<member name="T:PostSharp.MessageLocation">
<summary>
Represents the location of a message, which means, for the end-user, a line in a file of source code.
From the aspect developer, the location can be known as an object representing an element of code
(for instance a <see cref="T:System.Type" /> or <see cref="T:System.Reflection.MethodInfo" />). Such implicit locations are resolved
by PostSharp to a file and line number.
</summary>
</member>
<member name="P:PostSharp.MessageLocation.CodeElement">
<summary>
Element of code (reflection object or <c>Declaration</c>) from which the location must be resolved.
</summary>
</member>
<member name="P:PostSharp.MessageLocation.EndColumn">
<summary>
Gets the ending column in the file that caused the
message.
</summary>
</member>
<member name="P:PostSharp.MessageLocation.EndLine">
<summary>
Gets the ending line in the file that caused the message.
</summary>
</member>
<member name="M:PostSharp.MessageLocation.Explicit(System.String)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> explicitly by specifying a filename, when the
</summary>
<param name="file">File name.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Explicit(System.String,System.Int32,System.Int32)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> explicitly by specifying a filename, line, and column.
</summary>
<param name="file">File name.</param>
<param name="line">Line number.</param>
<param name="column">Column number.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Explicit(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> explicitly by specifying a filename, line, and column.
</summary>
<param name="file">File name.</param>
<param name="lineStart">Starting line number.</param>
<param name="columnStart">Starting column number.</param>
<param name="lineEnd">Ending line number.</param>
<param name="columnEnd">Ending column number.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="P:PostSharp.MessageLocation.File">
<summary>
Gets the name of the file that caused the message.
</summary>
</member>
<member name="M:PostSharp.MessageLocation.Of(PostSharp.Reflection.LocationInfo)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from a <see cref="T:PostSharp.Reflection.LocationInfo" />.
</summary>
<param name="location">A <see cref="T:PostSharp.Reflection.LocationInfo" />.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Of(PostSharp.Reflection.SymbolSequencePoint)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from a <see cref="T:PostSharp.Reflection.SymbolSequencePoint" />.
</summary>
<param name="symbolSequencePoint">A <see cref="T:PostSharp.Reflection.SymbolSequencePoint" />.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" /> corresponding to <paramref name="symbolSequencePoint" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Of(PostSharp.Reflection.Syntax.IExpression)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from an <see cref="T:PostSharp.Reflection.Syntax.IExpression" />.
</summary>
<param name="expression">An <see cref="T:PostSharp.Reflection.Syntax.IExpression" />.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Of(System.Object)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from an object representing an
element of code (<see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:PostSharp.Reflection.Syntax.IExpression" />, <see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Reflection.ParameterInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.PropertyInfo" /> or, if
you are using PostSharp SDK, any <c>Declaration</c>).
</summary>
<param name="codeElement">an object representing an
element of code (<see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Reflection.ParameterInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:PostSharp.Reflection.Syntax.IExpression" /> or, if you are using PostSharp SDK, any <c>Declaration</c>.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" /> representing <paramref name="codeElement" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Of(System.Reflection.Assembly)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from an <see cref="T:System.Reflection.Assembly" />.
</summary>
<param name="assembly">An <see cref="T:System.Reflection.Assembly" /> (<see cref="T:System.Reflection.Assembly" /> or its wrapper).</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Of(System.Reflection.MemberInfo)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from a <see cref="T:System.Reflection.MemberInfo" /> (<see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.FieldInfo" />,
<see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />).
</summary>
<param name="member">An element of code (<see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.FieldInfo" />,
<see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />).</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Of(System.Reflection.ParameterInfo)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from a <see cref="T:System.Reflection.ParameterInfo" />.
</summary>
<param name="parameter">A <see cref="T:System.Reflection.ParameterInfo" />.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="P:PostSharp.MessageLocation.StartColumn">
<summary>
Gets the starting column in the file that caused the message.
</summary>
</member>
<member name="P:PostSharp.MessageLocation.StartLine">
<summary>
Gets the starting line in the file that caused the message.
</summary>
</member>
<member name="F:PostSharp.MessageLocation.Unknown">
<summary>
Represents an unknown or indeterminate location of the error message.
</summary>
</member>
<member name="T:PostSharp.Post">
<summary>
Provides some methods that are transformed during post-compilation.
</summary>
</member>
<member name="M:PostSharp.Post.Cast``2(``0)">
<summary>
At post-compile time, casts an instance of a type into another.
A post-compile time error is reported if the source type cannot be
assigned to the target type.
</summary>
<param name="o">Instance to be casted.</param>
<typeparam name="SourceType">Source type.</typeparam>
<typeparam name="TargetType">Target type.</typeparam>
<returns>The object <paramref name="o" /> casted as <typeparamref name="TargetType" />.</returns>
</member>
<member name="M:PostSharp.Post.GetValue``1(``0)">
<summary>
When used to retrieve the value of a field, forces the compiler to retrieve a copy
of the field value instead of an address to this field. This allows to call
instance methods of value-type fields without loading the field address.
</summary>
<param name="value">Value.</param>
<typeparam name="T">Type of the value to retrieve (this type parameter can generally be omitted).</typeparam>
<returns>
<paramref name="value" />, exactly.</returns>
</member>
<member name="P:PostSharp.Post.IsTransformed">
<summary>
Determines whether the calling program has been transformed by PostSharp.
</summary>
</member>
<member name="T:PostSharp.Aspects.AdviceArgs">
<summary>
Base class for arguments of all advices.
</summary>
</member>
<member name="M:PostSharp.Aspects.AdviceArgs.#ctor(System.Object)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.AdviceArgs" />.
</summary>
<param name="instance">The instance related to the advice invocation, or
<c>null</c> if the advice is associated to a static element of code.</param>
</member>
<member name="P:PostSharp.Aspects.AdviceArgs.DeclarationIdentifier">
<summary>
Gets the <see cref="P:PostSharp.Aspects.AdviceArgs.DeclarationIdentifier" /> of the declaration to which the
advice has been applied.
</summary>
</member>
<member name="P:PostSharp.Aspects.AdviceArgs.Instance">
<summary>
Gets or sets the object instance on which the method is being executed.
</summary>
</member>
<member name="T:PostSharp.Aspects.Arguments">
<summary>
Encapsulation of method arguments.
</summary>
</member>
<member name="M:PostSharp.Aspects.Arguments.Clone">
<summary>
Returns a shallow copy of the current object.
</summary>
<returns>A shallow copy of the current object.</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.CopyFrom(System.Object[],System.Int32)">
<summary>
Copies all the argument values from the elements of <see cref="T:System.Array" />.
</summary>
<param name="array">The array that is the source of the argument values copied into the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <c>null</c>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero.</exception>
</member>
<member name="M:PostSharp.Aspects.Arguments.CopyTo(System.Object[],System.Int32)">
<summary>
Copies all arguments values to the specified <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.
</summary>
<param name="array">The array that is the destination of argument values copied from the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins</param>
</member>
<member name="P:PostSharp.Aspects.Arguments.Count">
<summary>
Gets the number of arguments encapsulated by the current object.
</summary>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create(System.Object[])">
<summary>
Creates a weakly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing any number of arguments.
</summary>
<param name="array"></param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create(System.Object[])</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``1(``0)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 1 argument.
</summary>
<param name="arg0"></param>
<typeparam name="T"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``1(``0)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``2(``0,``1)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 2 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``2(``0,``1)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``3(``0,``1,``2)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 3 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<param name="arg2"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<typeparam name="T2"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``3(``0,``1,``2)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``4(``0,``1,``2,``3)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 4 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<param name="arg2"></param>
<param name="arg3"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<typeparam name="T2"></typeparam>
<typeparam name="T3"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``4(``0,``1,``2,``3)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``5(``0,``1,``2,``3,``4)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 5 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<param name="arg2"></param>
<param name="arg3"></param>
<param name="arg4"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<typeparam name="T2"></typeparam>
<typeparam name="T3"></typeparam>
<typeparam name="T4"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``5(``0,``1,``2,``3,``4)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``6(``0,``1,``2,``3,``4,``5)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 6 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<param name="arg2"></param>
<param name="arg3"></param>
<param name="arg4"></param>
<param name="args5"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<typeparam name="T2"></typeparam>
<typeparam name="T3"></typeparam>
<typeparam name="T4"></typeparam>
<typeparam name="T5"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``6(``0,``1,``2,``3,``4,``5)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``7(``0,``1,``2,``3,``4,``5,``6)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 7 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<param name="arg2"></param>
<param name="arg3"></param>
<param name="arg4"></param>
<param name="args5"></param>
<param name="args6"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<typeparam name="T2"></typeparam>
<typeparam name="T3"></typeparam>
<typeparam name="T4"></typeparam>
<typeparam name="T5"></typeparam>
<typeparam name="T6"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``7(``0,``1,``2,``3,``4,``5,``6)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``8(``0,``1,``2,``3,``4,``5,``6,``7)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 8 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<param name="arg2"></param>
<param name="arg3"></param>
<param name="arg4"></param>
<param name="args5"></param>
<param name="args6"></param>
<param name="args7"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<typeparam name="T2"></typeparam>
<typeparam name="T3"></typeparam>
<typeparam name="T4"></typeparam>
<typeparam name="T5"></typeparam>
<typeparam name="T6"></typeparam>
<typeparam name="T7"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``8(``0,``1,``2,``3,``4,``5,``6,``7)</parameter>
</include>
</markup>
</returns>
</member>
<member name="F:PostSharp.Aspects.Arguments.Empty">
<summary>
Empty list of <see cref="T:PostSharp.Aspects.Arguments" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Arguments.GetArgument(System.Int32)">
<summary>
Gets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<returns>The value of the argument at position <paramref name="index" />.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Arguments.GetEnumerator">
<summary>Returns an enumerator that iterates through the collection.</summary>
<returns>An enumerator that can be used to iterate through the collection.</returns>
</member>
<member name="P:PostSharp.Aspects.Arguments.Item(System.Int32)">
<summary>
Gets or sets the value of an argument.
</summary>
<param name="index">Argument index.</param>
<returns>The argument value.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Arguments.SetArgument(System.Int32,System.Object)">
<summary>
Sets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<param name="value">New value of the argument at position <paramref name="index" />.</param>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> is not assignable to parameter
at position <paramref name="index" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Arguments.ToArray">
<summary>
Converts the current argument list into an <see cref="T:System.Array" />.
</summary>
<returns>An <see cref="T:System.Array" /> whose elements are equal to the values encapsulated by the current <see cref="T:PostSharp.Aspects.Arguments" />.</returns>
</member>
<member name="T:PostSharp.Aspects.Aspect">
<summary>
Base class for all aspects that are declared using multicast custom attributes (<see cref="T:PostSharp.Extensibility.MulticastAttribute" />).
</summary>
</member>
<member name="M:PostSharp.Aspects.Aspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Aspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Aspect.AspectPriority">
<summary>
Gets or sets the weaving priority of the aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Aspect.CompileTimeValidate(System.Object)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="target">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the aspect has been applied.</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable target, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration">
<summary>
Method invoked at build time to create a concrete <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance specifically
for the current <see cref="T:PostSharp.Aspects.Aspect" /> type.
</summary>
<returns>A new and empty instance of <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />, whose concrete type corresponds to
the concrete type of the <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="M:PostSharp.Aspects.Aspect.GetAspectConfiguration(System.Object)">
<summary>
Method invoked at build tome to get the imperative configuration of the current <see cref="T:PostSharp.Aspects.Aspect" />.
</summary>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.Aspect" />
has been applied.
</param>
<returns>An <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> representing the imperative configuration
of the current <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="P:PostSharp.Aspects.Aspect.SerializerType">
<summary>
Gets or sets the <see cref="T:System.Type" /> of the serializer (a type derived
from <see cref="T:PostSharp.Aspects.Serialization.AspectSerializer" />) used to serialize the aspect instance
at build time and deserialize it at runtime.
</summary>
</member>
<member name="M:PostSharp.Aspects.Aspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Object)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.Aspect" />
has been applied.
</param>
</member>
<member name="T:PostSharp.Aspects.AspectDescriptionAttribute">
<summary>
Custom attribute that, when applied to an aspect class, specifies a human-readable description of the aspect
that can be displayed in PostSharp Tools for Visual Studio.
</summary>
</member>
<member name="M:PostSharp.Aspects.AspectDescriptionAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:PostSharp.Aspects.AspectDescriptionAttribute" /> class.
</summary>
<param name="description">A human-readable description of the aspect class to which
the <see cref="T:PostSharp.Aspects.AspectDescriptionAttribute" /> custom attribute is applied.</param>
</member>
<member name="P:PostSharp.Aspects.AspectDescriptionAttribute.Description">
<summary>
Gets a human-readable description of the aspect class to which
the <see cref="T:PostSharp.Aspects.AspectDescriptionAttribute" /> custom attribute is applied.
</summary>
</member>
<member name="T:PostSharp.Aspects.AspectInfo">
<summary>
Reserved for future usage.
</summary>
</member>
<member name="M:PostSharp.Aspects.AspectInfo.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.AspectInfo</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.AspectInstance">
<summary>
Completely specifies an aspect instance, including its target code element. An <see cref="T:PostSharp.Aspects.AspectInstance" />
contains either the aspect instance itself (<see cref="T:PostSharp.Aspects.Aspect" /> property), either information allowing to construct the aspect
(<see cref="P:PostSharp.Aspects.AspectSpecification.AspectConstruction" />) and configure the weaver (<see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />).
</summary>
</member>
<member name="M:PostSharp.Aspects.AspectInstance.#ctor(System.Object,PostSharp.Aspects.IAspect)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.AspectInstance" /> from a runtime aspect instance (<see cref="T:PostSharp.Aspects.IAspect" />).
</summary>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.AspectInstance" />
is applied.</param>
<param name="aspect">The aspect runtime instance.</param>
</member>
<member name="M:PostSharp.Aspects.AspectInstance.#ctor(System.Object,PostSharp.Aspects.IAspect,PostSharp.Aspects.Configuration.AspectConfiguration)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.AspectInstance" /> from a runtime aspect instance (<see cref="T:PostSharp.Aspects.IAspect" />)
and its <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />.
</summary>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.AspectInstance" />
is applied.</param>
<param name="aspect">The aspect runtime instance.</param>
<param name="aspectConfiguration">The aspect configuration (the type of this parameter should be equal to the
type configuration objects expected by the concrete <paramref name="aspect" />).</param>
</member>
<member name="M:PostSharp.Aspects.AspectInstance.#ctor(System.Object,PostSharp.Reflection.ObjectConstruction,PostSharp.Aspects.Configuration.AspectConfiguration)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.AspectInstance" /> from
</summary>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.AspectInstance" />
is applied.</param>
<param name="aspectConstruction">An <see cref="T:PostSharp.Reflection.ObjectConstruction" /> instructing how the aspect instance
should be constructed.</param>
<param name="aspectConfiguration">An optional configuration object whose type corresponds to
the aspect type.</param>
</member>
<member name="P:PostSharp.Aspects.AspectInstance.RepresentAsStandalone">
<summary>
Determines whether the <see cref="T:PostSharp.Aspects.AspectInstance" /> should be represented as a stand-alone instance
in PostSharp Tools for Visual Studio. If <c>false</c>, the current <see cref="T:PostSharp.Aspects.AspectInstance" />
will be not be represented as a standalone node, and its advices will be merged with the ones provided
by the parent aspect (implementing <see cref="T:PostSharp.Aspects.IAspectProvider" />). The default value is <c>false</c>.
</summary>
</member>
<member name="P:PostSharp.Aspects.AspectInstance.TargetElement">
<summary>
Gets the code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.AspectInstance" />
is applied.
</summary>
</member>
<member name="T:PostSharp.Aspects.AspectSpecification">
<summary>
Completely specifies an aspect instance (but not its target). An <see cref="T:PostSharp.Aspects.AspectSpecification" /> either the aspect instance itself
(<see cref="P:PostSharp.Aspects.AspectSpecification.Aspect" /> property), either information allowing to construct the aspect (<see cref="P:PostSharp.Aspects.AspectSpecification.AspectConstruction" />) and configure the weaver (<see cref="P:PostSharp.Aspects.AspectSpecification.AspectConfiguration" />).
</summary>
</member>
<member name="M:PostSharp.Aspects.AspectSpecification.#ctor(PostSharp.Reflection.ObjectConstruction,PostSharp.Aspects.Configuration.AspectConfiguration)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.AspectSpecification" /> when one cannot provide an aspect instance,
i.e. from an <see cref="T:PostSharp.Reflection.ObjectConstruction" /> and a <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />.
</summary>
<param name="aspectConstruction">Aspect construction.</param>
<param name="aspectConfiguration">Aspect configuration.</param>
</member>
<member name="P:PostSharp.Aspects.AspectSpecification.Aspect">
<summary>
Gets the aspect instance.
</summary>
</member>
<member name="P:PostSharp.Aspects.AspectSpecification.AspectAssemblyQualifiedTypeName">
<summary>
Gets the assembly-qualified type name of the aspect.
</summary>
</member>
<member name="P:PostSharp.Aspects.AspectSpecification.AspectConfiguration">
<summary>
Gets the aspect configuration.
</summary>
</member>
<member name="P:PostSharp.Aspects.AspectSpecification.AspectConstruction">
<summary>
Gets the aspect construction.
</summary>
</member>
<member name="P:PostSharp.Aspects.AspectSpecification.AspectTypeName">
<summary>
Gets the type name of the aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.AspectUtilities">
<summary>
Utility methods for <c>PostSharp.Aspects</c>.
</summary>
</member>
<member name="M:PostSharp.Aspects.AspectUtilities.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.AspectUtilities</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.AspectUtilities.GetCurrentInstanceCredentials">
<summary>
Gets the <see cref="T:PostSharp.Aspects.InstanceCredentials" /> of the calling instance. This method must be
invoked from an instance method (not a static method) of a type that has been enhanced
by an aspect.
</summary>
<returns>The <see cref="T:PostSharp.Aspects.InstanceCredentials" /> of the calling instance.</returns>
</member>
<member name="M:PostSharp.Aspects.AspectUtilities.InitializeCurrentAspects">
<summary>
Initializes the all the aspects of the calling instance. This method must be
invoked from an instance method (not a static method) of a type that has been enhanced
by an aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.AssemblyLevelAspect">
<summary>
Base class for all aspects applied on assemblies.
</summary>
</member>
<member name="M:PostSharp.Aspects.AssemblyLevelAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.AssemblyLevelAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.AssemblyLevelAspect.CompileTimeInitialize(System.Reflection.Assembly,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="assembly">Assembly to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="M:PostSharp.Aspects.AssemblyLevelAspect.CompileTimeValidate(System.Object)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="target">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the aspect has been applied.</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable target, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.AssemblyLevelAspect.CompileTimeValidate(System.Reflection.Assembly)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="assembly">Assembly on which the current aspect is applied.</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable target, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.AssemblyLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Object)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.Aspect" />
has been applied.
</param>
</member>
<member name="M:PostSharp.Aspects.AssemblyLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Reflection.Assembly)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetAssembly">Assembly to which the current aspect has been applied.</param>
</member>
<member name="T:PostSharp.Aspects.CompositionAspect">
<summary>
Aspect that, when applied on a type, introduces one or many new interfaces
into that type.
</summary>
</member>
<member name="M:PostSharp.Aspects.CompositionAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.CompositionAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.CompositionAspect.AncestorOverrideAction">
<summary>
Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when an <i>ancestor</i> of one of the interfaces returned by <see cref="M:PostSharp.Aspects.CompositionAspect.GetPublicInterfaces(System.Type)" />
is already implemented by the type to which the current aspect is applied.
</summary>
</member>
<member name="M:PostSharp.Aspects.CompositionAspect.CreateAspectConfiguration">
<summary>
Method invoked at build time to create a concrete <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance specifically
for the current <see cref="T:PostSharp.Aspects.Aspect" /> type.
</summary>
<returns>A new and empty instance of <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />, whose concrete type corresponds to
the concrete type of the <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="M:PostSharp.Aspects.CompositionAspect.CreateImplementationObject(PostSharp.Aspects.AdviceArgs)">
<summary>
Method invoked at runtime, during the initialization of instances of the target type,
to create the composed object.
</summary>
<param name="args">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>args</parameter>
<parameter>M:PostSharp.Aspects.CompositionAspect.CreateImplementationObject(PostSharp.Aspects.AdviceArgs)</parameter>
</include>
</markup>
</param>
<returns>The composed object. This interface should implement the interfaces specified
by the <see cref="M:PostSharp.Aspects.CompositionAspect.GetPublicInterfaces(System.Type)" /> method.</returns>
</member>
<member name="P:PostSharp.Aspects.CompositionAspect.GenerateImplementationAccessor">
<summary>
Determines whether the interface <see cref="T:PostSharp.Aspects.IComposed`1" /> should be introduced into the type to which the aspect
is applied for each interface returned by the <see cref="M:PostSharp.Aspects.CompositionAspect.GetPublicInterfaces(System.Type)" /> method.
</summary>
</member>
<member name="M:PostSharp.Aspects.CompositionAspect.GetPublicInterfaces(System.Type)">
<summary>
Gets the array of interfaces that should be introduced publicly into
the target type of the current aspect.
</summary>
<param name="targetType">
<see cref="T:System.Type" /> to which the current aspect is applied.</param>
<returns>The array of interfaces that should be introduced publicly into <see cref="T:System.Type" /><paramref name="targetType" />, or <c>null</c> if no interface should
be introduced publicly.</returns>
</member>
<member name="P:PostSharp.Aspects.CompositionAspect.NonSerializedImplementation">
<summary>
Determines whether the field containing the interface implementation (and storing the object returned by
<see cref="M:PostSharp.Aspects.CompositionAspect.CreateImplementationObject(PostSharp.Aspects.AdviceArgs)" />) should be excluded from serialization by <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" />.
The same effect is typically obtained by applying the <see cref="T:System.NonSerializedAttribute" /> custom attribute to the field.
</summary>
</member>
<member name="P:PostSharp.Aspects.CompositionAspect.OverrideAction">
<summary>
Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when one of the interfaces returned by the <see cref="M:PostSharp.Aspects.CompositionAspect.GetPublicInterfaces(System.Type)" /> method
is already implemented by the type to which the current aspect is applied.
</summary>
</member>
<member name="M:PostSharp.Aspects.CompositionAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Type)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetType">Type to which the current aspect has been applied.</param>
</member>
<member name="T:PostSharp.Aspects.ConstructorDepth">
<summary>
System type used in the implementation of the <see cref="T:PostSharp.Aspects.Advices.OnInstanceConstructedAdvice" />. Do not use in user code.
</summary>
</member>
<member name="M:PostSharp.Aspects.ConstructorDepth.Increment">
<summary>
Creates a new instance of the <see cref="T:PostSharp.Aspects.ConstructorDepth" /> type with a depth level that is one more than the current one.
</summary>
<returns>A new <see cref="T:PostSharp.Aspects.ConstructorDepth" />, incremented of one from the current <see cref="T:PostSharp.Aspects.ConstructorDepth" />.</returns>
</member>
<member name="P:PostSharp.Aspects.ConstructorDepth.IsZero">
<summary>
Determines whether the current depth is zero.
</summary>
</member>
<member name="M:PostSharp.Aspects.ConstructorDepth.ToString">
<summary>Returns the fully qualified type name of this instance.</summary>
<returns>A <see cref="T:System.String" /> containing a fully qualified type name.</returns>
</member>
<member name="P:PostSharp.Aspects.ConstructorDepth.Zero">
<summary>
Gets a <see cref="T:PostSharp.Aspects.ConstructorDepth" /> instance representing zero.
</summary>
</member>
<member name="T:PostSharp.Aspects.CustomAttributeIntroductionAspect">
<summary>
Aspect that, when applied to a target, adds a custom attribute to this target.
</summary>
</member>
<member name="M:PostSharp.Aspects.CustomAttributeIntroductionAspect.#ctor(PostSharp.Reflection.ObjectConstruction)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.CustomAttributeIntroductionAspect" /> by specifying an <see cref="T:PostSharp.Reflection.ObjectConstruction" />.
</summary>
<param name="attribute">Construction of the custom attribute to be added to the target.</param>
</member>
<member name="M:PostSharp.Aspects.CustomAttributeIntroductionAspect.#ctor(System.Reflection.CustomAttributeData)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.CustomAttributeIntroductionAspect" /> by specifying a
<see cref="T:System.Reflection.CustomAttributeData" />.
</summary>
<param name="customAttributeData">Construction of the custom attribute to be added to the target.</param>
</member>
<member name="P:PostSharp.Aspects.CustomAttributeIntroductionAspect.CustomAttribute">
<summary>
Gets the construction of the custom attribute that must be applied to the target of this aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.EventInterceptionArgs">
<summary>
Arguments of handlers of aspects of the type <see cref="T:PostSharp.Aspects.EventInterceptionAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionArgs.AddHandler(System.Delegate)">
<summary>
Adds a handler to the event by invoking the <c>Add</c> semantic of the next node in the chain of invocation.
</summary>
<param name="handler">The handler to add to the event.</param>
</member>
<member name="P:PostSharp.Aspects.EventInterceptionArgs.Arguments">
<summary>
Gets the delegate arguments.
</summary>
</member>
<member name="P:PostSharp.Aspects.EventInterceptionArgs.Binding">
<summary>
Gets an interface that allows to invoke the next node in the chain of invocation of the intercepted method.
</summary>
</member>
<member name="P:PostSharp.Aspects.EventInterceptionArgs.Event">
<summary>
Gets the event to which the current aspect has been applied.
</summary>
</member>
<member name="P:PostSharp.Aspects.EventInterceptionArgs.Handler">
<summary>
Gets the delegate being added, removed, or invoked.
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionArgs.InvokeHandler(System.Delegate,PostSharp.Aspects.Arguments)">
<summary>
Invokes a handler by calling the <c>Invoke</c> semantic of the next node in the chain of invocation.
</summary>
<param name="handler">Handler to be invoked.</param>
<param name="arguments">Arguments passed to the handler.</param>
<returns>Return value of the handler.</returns>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionArgs.ProceedAddHandler">
<summary>
Proceeds with adding the <see cref="T:System.Delegate" /> to the event to which the current aspect.
This method invokes the next handler in chain.
It is typically invoked from the implementation of <see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnAddHandler(PostSharp.Aspects.EventInterceptionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionArgs.ProceedInvokeHandler">
<summary>
Proceeds with invoking the <see cref="T:System.Delegate" /> with the arguments specified in the <see cref="P:PostSharp.Aspects.EventInterceptionArgs.Arguments" /> property.
The delegate may change the <see cref="P:PostSharp.Aspects.EventInterceptionArgs.Arguments" /> and set the <see cref="P:PostSharp.Aspects.EventInterceptionArgs.ReturnValue" />.
This method invokes the next handler in chain.
It is typically invoked from the implementation of <see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnInvokeHandler(PostSharp.Aspects.EventInterceptionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionArgs.ProceedRemoveHandler">
<summary>
Proceeds with removing the <see cref="T:System.Delegate" /> from the event to which the current aspect.
This method invokes the next handler in chain.
It is typically invoked from the implementation of <see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnRemoveHandler(PostSharp.Aspects.EventInterceptionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionArgs.RemoveHandler(System.Delegate)">
<summary>
Removes a handler from the event by invoking the <c>Remove</c> semantic of the next node in the chain of invocation.
</summary>
<param name="handler">Handler to be removed.</param>
</member>
<member name="P:PostSharp.Aspects.EventInterceptionArgs.ReturnValue">
<summary>
Gets the return value of the delegate.
</summary>
</member>
<member name="T:PostSharp.Aspects.EventInterceptionAspect">
<summary>
Aspect that, when applied on an event, intercepts invocations of its semantics <c>Add</c> (<see cref="M:PostSharp.Aspects.EventInterceptionAspect.OnAddHandler(PostSharp.Aspects.EventInterceptionArgs)" />),
<c>Remove</c> (<see cref="M:PostSharp.Aspects.EventInterceptionAspect.OnRemoveHandler(PostSharp.Aspects.EventInterceptionArgs)" />) and <c>Invoke</c> (<see cref="M:PostSharp.Aspects.EventInterceptionAspect.OnInvokeHandler(PostSharp.Aspects.EventInterceptionArgs)" />).
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.EventInterceptionAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionAspect.CreateAspectConfiguration">
<summary>
Method invoked at build time to create a concrete <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance specifically
for the current <see cref="T:PostSharp.Aspects.Aspect" /> type.
</summary>
<returns>A new and empty instance of <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />, whose concrete type corresponds to
the concrete type of the <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionAspect.OnAddHandler(PostSharp.Aspects.EventInterceptionArgs)">
<summary>
Method invoked <i>instead</i> of the <c>Add</c> semantic of the event to which the current aspect is applied,
i.e. when a new delegate is added to this event.
</summary>
<param name="args">Handler arguments.</param>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionAspect.OnInvokeHandler(PostSharp.Aspects.EventInterceptionArgs)">
<summary>
Method invoked when the event to which the current aspect is applied is fired, <i>for each</i> delegate
of this event, and <i>instead of</i> invoking this delegate.
</summary>
<param name="args">Handler arguments.</param>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionAspect.OnRemoveHandler(PostSharp.Aspects.EventInterceptionArgs)">
<summary>
Method invoked <i>instead</i> of the <c>Remove</c> semantic of the event to which the current aspect is applied,
i.e. when a delegate is removed from this event.
</summary>
<param name="args">Handler arguments.</param>
</member>
<member name="T:PostSharp.Aspects.EventLevelAspect">
<summary>
Base class for all aspects applied on events.
</summary>
</member>
<member name="M:PostSharp.Aspects.EventLevelAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.EventLevelAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.EventLevelAspect.CompileTimeInitialize(System.Reflection.EventInfo,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="targetEvent">Event to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="M:PostSharp.Aspects.EventLevelAspect.CompileTimeValidate(System.Object)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="target">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the aspect has been applied.</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable target, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.EventLevelAspect.CompileTimeValidate(System.Reflection.EventInfo)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="targetEvent">Event to which the aspect has been applied</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable event, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.EventLevelAspect.RuntimeInitialize(System.Reflection.EventInfo)">
<summary>
Initializes the current aspect.
</summary>
<param name="eventInfo">Event to which the current aspect is applied.</param>
</member>
<member name="M:PostSharp.Aspects.EventLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Object)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.Aspect" />
has been applied.
</param>
</member>
<member name="M:PostSharp.Aspects.EventLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Reflection.EventInfo)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetEvent">Event to which the current aspect has been applied.</param>
</member>
<member name="T:PostSharp.Aspects.FieldLevelAspect">
<summary>
Base class for all aspects applied on fields.
</summary>
</member>
<member name="M:PostSharp.Aspects.FieldLevelAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.FieldLevelAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.FieldLevelAspect.CompileTimeInitialize(System.Reflection.FieldInfo,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="field">Field to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="M:PostSharp.Aspects.FieldLevelAspect.CompileTimeValidate(System.Object)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="target">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the aspect has been applied.</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable target, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.FieldLevelAspect.CompileTimeValidate(System.Reflection.FieldInfo)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="field">Field to which the aspect has been applied</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable field, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.FieldLevelAspect.RuntimeInitialize(System.Reflection.FieldInfo)">
<summary>
Method invoked at runtime before any other method of the aspect is invoked.
</summary>
<param name="field">Field on which this instance is applied.</param>
</member>
<member name="M:PostSharp.Aspects.FieldLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Object)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.Aspect" />
has been applied.
</param>
</member>
<member name="M:PostSharp.Aspects.FieldLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Reflection.FieldInfo)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetField">Field to which the current aspect has been applied.</param>
</member>
<member name="T:PostSharp.Aspects.FlowBehavior">
<summary>
Enumerates the possible behaviors of the calling method after the calling method has returned.
</summary>
</member>
<member name="F:PostSharp.Aspects.FlowBehavior.Default">
<summary>
Default flow behavior for the current method. For <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnEntry(PostSharp.Aspects.MethodExecutionArgs)" />, <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnExit(PostSharp.Aspects.MethodExecutionArgs)" /> and <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnSuccess(PostSharp.Aspects.MethodExecutionArgs)" />, the fault flow is
<see cref="F:PostSharp.Aspects.FlowBehavior.Continue" />, for <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnException(PostSharp.Aspects.MethodExecutionArgs)" /> it is <see cref="F:PostSharp.Aspects.FlowBehavior.RethrowException" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.FlowBehavior.Continue">
<summary>
Continue normally. In an <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnException(PostSharp.Aspects.MethodExecutionArgs)" /> advice, the <see cref="F:PostSharp.Aspects.FlowBehavior.Continue" /> behavior does not rethrow
the exception, but continues the normal execution flow after the block protected by the advise.
If there is another <see cref="T:PostSharp.Aspects.OnMethodBoundaryAspect" /> aspect before the current <see cref="T:PostSharp.Aspects.OnMethodBoundaryAspect" /> aspect on the current method,
the <see cref="F:PostSharp.Aspects.FlowBehavior.Continue" /> behavior calls the <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnSuccess(PostSharp.Aspects.MethodExecutionArgs)" />
method of the other aspect.
</summary>
</member>
<member name="F:PostSharp.Aspects.FlowBehavior.RethrowException">
<summary>
The current exception will be rethrown. Available only for <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnException(PostSharp.Aspects.MethodExecutionArgs)" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.FlowBehavior.Return">
<summary>
Return immediately from the current method. Available only for <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnEntry(PostSharp.Aspects.MethodExecutionArgs)" /> and
<see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnException(PostSharp.Aspects.MethodExecutionArgs)" />. Note that you may want to set the <see cref="P:PostSharp.Aspects.MethodExecutionArgs.ReturnValue" />
property, otherwise you may get a <see cref="T:System.NullReferenceException" />. If there is another <see cref="T:PostSharp.Aspects.OnMethodBoundaryAspect" />
aspect before the current <see cref="T:PostSharp.Aspects.OnMethodBoundaryAspect" /> aspect on the current method,
the <see cref="F:PostSharp.Aspects.FlowBehavior.Return" /> behavior skips the <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnSuccess(PostSharp.Aspects.MethodExecutionArgs)" />
method of the other aspect. However, the <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnExit(PostSharp.Aspects.MethodExecutionArgs)" /> method of the other aspect
will be invoked.
</summary>
</member>
<member name="F:PostSharp.Aspects.FlowBehavior.ThrowException">
<summary>
Throws the exception contained in the <see cref="P:PostSharp.Aspects.MethodExecutionArgs.Exception" /> property. Available only for <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnException(PostSharp.Aspects.MethodExecutionArgs)" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.FlowBehavior.Yield">
<summary>
Yields a value or awaits for an awaiter. Available only for iterators and async methods with the
<see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnEntry(PostSharp.Aspects.MethodExecutionArgs)" /> and <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnResume(PostSharp.Aspects.MethodExecutionArgs)" /> advices.
</summary>
</member>
<member name="T:PostSharp.Aspects.IAspect">
<summary>
Base interface for run-time semantics of all aspects.
</summary>
</member>
<member name="T:PostSharp.Aspects.IAspectBuildSemantics">
<summary>
Compile-time semantics of <see cref="T:PostSharp.Aspects.IAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.IAspectBuildSemantics.GetAspectConfiguration(System.Object)">
<summary>
Method invoked at build time to get the imperative configuration of the current <see cref="T:PostSharp.Aspects.Aspect" />.
</summary>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current aspect has been applied.
</param>
<returns>An <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> representing the imperative configuration
of the current <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="T:PostSharp.Aspects.IAspectInstance">
<summary>
Represents an instance of an aspect applied to a declaration.
</summary>
</member>
<member name="P:PostSharp.Aspects.IAspectInstance.Aspect">
<summary>
Gets the aspect instance.
</summary>
</member>
<member name="P:PostSharp.Aspects.IAspectInstance.AspectConfiguration">
<summary>
Gets the aspect configuration.
</summary>
</member>
<member name="P:PostSharp.Aspects.IAspectInstance.AspectConstruction">
<summary>
Gets the aspect construction.
</summary>
</member>
<member name="P:PostSharp.Aspects.IAspectInstance.AspectType">
<summary>
Gets the type of the aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.IAspectProvider">
<summary>
Interface that, when implemented by an aspect class, allows aspect instances
to provide other aspects to the weaver.
</summary>
</member>
<member name="M:PostSharp.Aspects.IAspectProvider.ProvideAspects(System.Object)">
<summary>
Provides new aspects.
</summary>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current aspect has been applied.
</param>
<returns>A set of aspect instances.</returns>
</member>
<member name="T:PostSharp.Aspects.IAspectRepositoryService">
<summary>
Service that allows to determine which aspects have been applied to a given declaration, whether declaratively through custom attributes or <see cref="T:PostSharp.Extensibility.MulticastAttribute" />,
or programmatically using <see cref="T:PostSharp.Aspects.IAspectProvider" />.
</summary>
</member>
<member name="E:PostSharp.Aspects.IAspectRepositoryService.AspectDiscoveryCompleted">
<summary>
Event invoked after all the aspects in the current project have been discovered and initialized.
</summary>
</member>
<member name="M:PostSharp.Aspects.IAspectRepositoryService.GetAspectInstances(System.Object)">
<summary>
Gets the list of aspect instances on a given declaration.
</summary>
<param name="declaration">The declaration (in the current assembly) for which the list of aspect instances is required.</param>
<returns>The list of aspect instances applied on <paramref name="declaration" />.</returns>
</member>
<member name="M:PostSharp.Aspects.IAspectRepositoryService.HasAspect(System.Object,System.Type)">
<summary>
Determines whether an aspect of a given type has been applied to a given declaration.
</summary>
<param name="declaration">The declaration on which the presence of the aspect must be checked.</param>
<param name="aspectType">The type of aspect.</param>
<returns>
<c>true</c> if an aspect of type <paramref name="aspectType" /> has been applied to <paramref name="declaration" />, otherwise <c>false</c>.</returns>
</member>
<member name="T:PostSharp.Aspects.IAssemblyLevelAspect">
<summary>
Runtime semantics of aspects applied at assembly level.
</summary>
</member>
<member name="T:PostSharp.Aspects.IAssemblyLevelAspectBuildSemantics">
<summary>
Build-time semantics of aspects applied at assembly level.
</summary>
</member>
<member name="M:PostSharp.Aspects.IAssemblyLevelAspectBuildSemantics.CompileTimeInitialize(System.Reflection.Assembly,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="assembly">Assembly to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="T:PostSharp.Aspects.ICloneAwareAspect">
<summary>
Defines the semantics of aspects that require to be notified after
a target object is cloned using <see cref="M:System.Object.MemberwiseClone" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.ICloneAwareAspect.OnCloned(PostSharp.Aspects.ICloneAwareAspect)">
<summary>
Method called after the an object enhanced by the current aspect has been
cloned using <see cref="M:System.Object.MemberwiseClone" />. The <c>this</c>
parameter refers to the new aspect instance in the cloned object.
</summary>
<param name="source">Aspect instance corresponding to the current
aspect instance in the cloned target object.</param>
</member>
<member name="T:PostSharp.Aspects.IComposed`1">
<summary>
Interface exposing the implementation of another interface introduced
by a <see cref="T:PostSharp.Aspects.CompositionAspect" />.
</summary>
<typeparam name="T">Interface whose implementation is expose.</typeparam>
</member>
<member name="M:PostSharp.Aspects.IComposed`1.GetImplementation(PostSharp.Aspects.InstanceCredentials)">
<summary>
Gets the object implementing the interface <typeparamref name="T" />
on behalf of the current instance.
</summary>
<param name="credentials">Credentials provided by the current instance.</param>
<returns>The object implementing the interface <typeparamref name="T" />
on behalf of the current instance.
</returns>
</member>
<member name="T:PostSharp.Aspects.ICompositionAspect">
<summary>
Defines the semantics of an aspect that, when applied on a type, introduce one or many new interfaces
into that type, and let these interfaces be implemented by an object created
at runtime.
</summary>
</member>
<member name="M:PostSharp.Aspects.ICompositionAspect.CreateImplementationObject(PostSharp.Aspects.AdviceArgs)">
<summary>
Method invoked at runtime, during the initialization of instances of the target type,
to create the composed object.
</summary>
<param name="args">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>args</parameter>
<parameter>M:PostSharp.Aspects.ICompositionAspect.CreateImplementationObject(PostSharp.Aspects.AdviceArgs)</parameter>
</include>
</markup>
</param>
<returns>The composed object. This interface should implement the interfaces specified
by the <see cref="P:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.PublicInterfaces" /> and
<see cref="P:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.ProtectedInterfaces" /> collections.</returns>
</member>
<member name="T:PostSharp.Aspects.ICustomAttributeIntroductionAspect">
<summary>
Semantics of an aspect that, when applied to a target, adds a custom attribute to this target.
</summary>
</member>
<member name="T:PostSharp.Aspects.IEventBinding">
<summary>
Interface through which an event-level aspect or advice can
invoke the next node in the chain of invocation.
</summary>
</member>
<member name="M:PostSharp.Aspects.IEventBinding.AddHandler(System.Object@,System.Delegate)">
<summary>
Invoke the <c>Add</c> semantic on the next node in the chain of invocation.
</summary>
<param name="instance">Target instance on which the event is defined (<c>null</c> if the event is static).</param>
<param name="handler">Handler to be added to the event.</param>
</member>
<member name="M:PostSharp.Aspects.IEventBinding.InvokeHandler(System.Object@,System.Delegate,PostSharp.Aspects.Arguments)">
<summary>
Invoke the <c>Invoke</c> semantic on the next node in the chain of invocation.
</summary>
<param name="instance">Target instance on which the event is defined (<c>null</c> if the event is static).</param>
<param name="handler">Handler to be removed from the event.</param>
<param name="arguments">Arguments with which the <paramref name="handler" /> should be invoked.</param>
<returns>The value returned by the handler.</returns>
</member>
<member name="M:PostSharp.Aspects.IEventBinding.RemoveHandler(System.Object@,System.Delegate)">
<summary>
Invoke the <c>Remove</c> semantic on the next node in the chain of invocation.
</summary>
<param name="instance">Target instance on which the event is defined (<c>null</c> if the event is static).</param>
<param name="handler">Handler to be removed from the event.</param>
</member>
<member name="T:PostSharp.Aspects.IEventInterceptionAspect">
<summary>
Runtime semantics of an aspect that, when applied on an event, intercepts invocations of its semantics <c>Add</c> (<see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnAddHandler(PostSharp.Aspects.EventInterceptionArgs)" />),
<c>Remove</c> (<see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnRemoveHandler(PostSharp.Aspects.EventInterceptionArgs)" />) and <c>Invoke</c> (<see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnInvokeHandler(PostSharp.Aspects.EventInterceptionArgs)" />) semantics.
</summary>
</member>
<member name="M:PostSharp.Aspects.IEventInterceptionAspect.OnAddHandler(PostSharp.Aspects.EventInterceptionArgs)">
<summary>
Method invoked <i>instead</i> of the <c>Add</c> semantic of the event to which the current aspect is applied,
i.e. when a new delegate is added to this event.
</summary>
<param name="args">Handler arguments.</param>
</member>
<member name="M:PostSharp.Aspects.IEventInterceptionAspect.OnInvokeHandler(PostSharp.Aspects.EventInterceptionArgs)">
<summary>
Method invoked when the event to which the current aspect is applied is fired, <i>for each</i> delegate
of this event, and <i>instead of</i> invoking this delegate.
</summary>
<param name="args">Handler arguments.</param>
</member>
<member name="M:PostSharp.Aspects.IEventInterceptionAspect.OnRemoveHandler(PostSharp.Aspects.EventInterceptionArgs)">
<summary>
Method invoked <i>instead</i> of the <c>Remove</c> semantic of the event to which the current aspect is applied,
i.e. when a delegate is removed from this event.
</summary>
<param name="args">Handler arguments.</param>
</member>
<member name="T:PostSharp.Aspects.IEventLevelAspect">
<summary>
Runtime semantics of aspects that can be applied on events.
</summary>
</member>
<member name="M:PostSharp.Aspects.IEventLevelAspect.RuntimeInitialize(System.Reflection.EventInfo)">
<summary>
Initializes the current aspect.
</summary>
<param name="eventInfo">Event to which the current aspect is applied.</param>
</member>
<member name="T:PostSharp.Aspects.IEventLevelAspectBuildSemantics">
<summary>
Build-time semantics of aspects that can be applied on events.
</summary>
</member>
<member name="M:PostSharp.Aspects.IEventLevelAspectBuildSemantics.CompileTimeInitialize(System.Reflection.EventInfo,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="targetEvent">Event to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="T:PostSharp.Aspects.IFieldLevelAspect">
<summary>
Run-time semantics of aspects applied to fields.
</summary>
</member>
<member name="M:PostSharp.Aspects.IFieldLevelAspect.RuntimeInitialize(System.Reflection.FieldInfo)">
<summary>
Method invoked at runtime before any other method of the aspect is invoked.
</summary>
<param name="field">Field on which this instance is applied.</param>
</member>
<member name="T:PostSharp.Aspects.IFieldLevelAspectBuildSemantics">
<summary>
Compile-time semantics of <see cref="T:PostSharp.Aspects.IFieldLevelAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.IFieldLevelAspectBuildSemantics.CompileTimeInitialize(System.Reflection.FieldInfo,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="field">Field to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="T:PostSharp.Aspects.IInstanceScopedAspect">
<summary>
Runtime semantics of aspects that have the same lifetime as <i>instance</i> of types
to which their are applied (or instance of the declaring type of members to which they are applied).
</summary>
</member>
<member name="M:PostSharp.Aspects.IInstanceScopedAspect.CreateInstance(PostSharp.Aspects.AdviceArgs)">
<summary>
Creates a new instance of the aspect based on the current instance, serving as a prototype.
</summary>
<param name="adviceArgs">Aspect arguments.</param>
<returns>A new instance of the aspect, typically a clone of the current prototype instance.</returns>
</member>
<member name="M:PostSharp.Aspects.IInstanceScopedAspect.RuntimeInitializeInstance">
<summary>
Initializes the aspect instance. This method is invoked when all system elements of the aspect (like member imports)
have completed.
</summary>
</member>
<member name="T:PostSharp.Aspects.ILocationBinding">
<summary>
Interface through which a field- or property-level aspect or advice can
invoke the next node in the chain of invocation.
</summary>
</member>
<member name="P:PostSharp.Aspects.ILocationBinding.DeclarationIdentifier">
<summary>
Gets the <see cref="P:PostSharp.Aspects.ILocationBinding.DeclarationIdentifier" /> of the declaration that the binding represents.
</summary>
</member>
<member name="M:PostSharp.Aspects.ILocationBinding.Execute``1(PostSharp.Aspects.ILocationBindingAction{``0},``0@)">
<summary>
Provides a mechanism to execute a strongly-typed action that depends on the type of the current location.
</summary>
<param name="action">Action.</param>
<param name="payload">Payload.</param>
<typeparam name="TPayload">Type of the payload passed to the <paramref name="payload" /> parameter.</typeparam>
</member>
<member name="M:PostSharp.Aspects.ILocationBinding.GetValue(System.Object@,PostSharp.Aspects.Arguments)">
<summary>
Invokes the <c>Get</c> semantic on the next node in the chain of invocation.
</summary>
<param name="instance">Target instance from which the field or property should be retrieved (<c>null</c> if the field or property is static).</param>
<param name="index">Index arguments, if the location is an indexer property.</param>
<returns>The value stored at the location.</returns>
</member>
<member name="P:PostSharp.Aspects.ILocationBinding.LocationInfo">
<summary>
Gets metadata information about the field or property represented by the current binding.
</summary>
</member>
<member name="P:PostSharp.Aspects.ILocationBinding.LocationType">
<summary>
Gets the type of the field or property.
</summary>
</member>
<member name="M:PostSharp.Aspects.ILocationBinding.SetValue(System.Object@,PostSharp.Aspects.Arguments,System.Object)">
<summary>
Invokes the <c>Set</c> semantic on the next node in the chain of invocation.
</summary>
<param name="instance">Target instance from which the field or property should be retrieved (<c>null</c> if the field or property is static).</param>
<param name="index">Index arguments, if the location is an indexer property.</param>
<param name="value">New value to be stored at the location.</param>
</member>
<member name="T:PostSharp.Aspects.ILocationBinding`1">
<summary>
A strongly-typed variant for <see cref="T:PostSharp.Aspects.ILocationBinding" />.
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:PostSharp.Aspects.ILocationBinding`1.GetValue(System.Object@,PostSharp.Aspects.Arguments)">
<summary>
Invokes the <c>Get</c> semantic on the next node in the chain of invocation.
</summary>
<param name="instance">Target instance from which the field or property should be retrieved (<c>null</c> if the field or property is static).</param>
<param name="index">Index arguments, if the location is an indexer property.</param>
<returns>The value stored at the location.</returns>
</member>
<member name="M:PostSharp.Aspects.ILocationBinding`1.SetValue(System.Object@,PostSharp.Aspects.Arguments,`0)">
<summary>
Invokes the <c>Set</c> semantic on the next node in the chain of invocation.
</summary>
<param name="instance">Target instance from which the field or property should be retrieved (<c>null</c> if the field or property is static).</param>
<param name="index">Index arguments, if the location is an indexer property.</param>
<param name="value">New value to be stored at the location.</param>
</member>
<member name="T:PostSharp.Aspects.ILocationBindingAction`1">
<summary>
Exposes an <see cref="M:PostSharp.Aspects.ILocationBindingAction`1.Execute``1(PostSharp.Aspects.ILocationBinding{``0},`0@)" /> method invoked by the <see cref="M:PostSharp.Aspects.ILocationBinding.Execute``1(PostSharp.Aspects.ILocationBindingAction{``0},``0@)" /> method,
which allows to execute strongly-typed operations and avoid boxing required by the weakly typed <see cref="T:PostSharp.Aspects.ILocationBinding" /> interface.
</summary>
<typeparam name="TPayload">Type of the payload of the <see cref="M:PostSharp.Aspects.ILocationBindingAction`1.Execute``1(PostSharp.Aspects.ILocationBinding{``0},`0@)" /> method.</typeparam>
</member>
<member name="M:PostSharp.Aspects.ILocationBindingAction`1.Execute``1(PostSharp.Aspects.ILocationBinding{``0},`0@)">
<summary>
Method invoked by the <see cref="M:PostSharp.Aspects.ILocationBinding.Execute``1(PostSharp.Aspects.ILocationBindingAction{``0},``0@)" /> method.
</summary>
<param name="binding">The typed <see cref="T:PostSharp.Aspects.ILocationBinding" />.</param>
<param name="payload">Payload.</param>
<typeparam name="TValue">Type of the value of the <see cref="T:PostSharp.Aspects.ILocationBinding" /> object.</typeparam>
</member>
<member name="T:PostSharp.Aspects.ILocationInterceptionArgs">
<summary>
An interface for <see cref="T:PostSharp.Aspects.LocationInterceptionArgs" />.
</summary>
</member>
<member name="P:PostSharp.Aspects.ILocationInterceptionArgs.Binding">
<summary>
Gets an interface that allows to invoke the next node in the chain of invocation of the intercepted method.
</summary>
</member>
<member name="M:PostSharp.Aspects.ILocationInterceptionArgs.Execute``1(PostSharp.Aspects.ILocationInterceptionArgsAction{``0},``0@)">
<summary>
Executes a delegate for the current <see cref="T:PostSharp.Aspects.LocationInterceptionArgs" />. This method allows to
execute strongly-typed operations and avoid boxing required by the weakly typed <see cref="T:PostSharp.Aspects.ILocationInterceptionArgs" /> interface.
</summary>
<param name="action">Class (typically a singleton) that contains the generic method <see cref="M:PostSharp.Aspects.ILocationInterceptionArgsAction`1.Execute``1(PostSharp.Aspects.ILocationInterceptionArgs{``0},`0@)" />
that will be executed with the right method generic argument.</param>
<param name="payload">An argument being passed to the <see cref="M:PostSharp.Aspects.ILocationInterceptionArgsAction`1.Execute``1(PostSharp.Aspects.ILocationInterceptionArgs{``0},`0@)" /> method of the <paramref name="action" />
parameter.</param>
<typeparam name="TPayload">Type of the payload.</typeparam>
</member>
<member name="M:PostSharp.Aspects.ILocationInterceptionArgs.GetCurrentValue">
<summary>
Retrieves the current value of the location without overwriting the <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Value" /> property.
</summary>
<returns>The current value of the location, as returned by the next node in the chain of invocation (see <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Binding" />).</returns>
</member>
<member name="P:PostSharp.Aspects.ILocationInterceptionArgs.Index">
<summary>
Gets the current index arguments (in case of a property with parameters).
</summary>
</member>
<member name="P:PostSharp.Aspects.ILocationInterceptionArgs.Instance">
<summary>
Gets or sets the object instance on which the method is being executed.
</summary>
</member>
<member name="P:PostSharp.Aspects.ILocationInterceptionArgs.Location">
<summary>
Gets the location (field, property or parameter) related to the aspect or advice being executed.
</summary>
</member>
<member name="P:PostSharp.Aspects.ILocationInterceptionArgs.LocationFullName">
<summary>
Gets the full name (including the full name of the declaring type) of the location (field, property or parameter) related to the aspect or advice being executed.
</summary>
</member>
<member name="P:PostSharp.Aspects.ILocationInterceptionArgs.LocationName">
<summary>
Gets the name of the location (field, property or parameter) related to the aspect or advice being executed.
</summary>
</member>
<member name="M:PostSharp.Aspects.ILocationInterceptionArgs.ProceedGetValue">
<summary>
Invokes the <b>Get Location Value</b> semantic on the next node in the chain of invocation and stores the location value in the <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Value" /> property.
</summary>
</member>
<member name="M:PostSharp.Aspects.ILocationInterceptionArgs.ProceedSetValue">
<summary>
Invokes the <b>Set Location Value</b> semantic on the next node in the chain of invocation and stores the value of the <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Value" /> property into
the location.
</summary>
</member>
<member name="M:PostSharp.Aspects.ILocationInterceptionArgs.SetNewValue(System.Object)">
<summary>
Sets the value of the location without overwriting the <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Value" /> property.
</summary>
<param name="value">The value to be passed to the next node in the chain of invocation (see <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Binding" />).</param>
</member>
<member name="P:PostSharp.Aspects.ILocationInterceptionArgs.Value">
<summary>
Gets or sets the location value.
</summary>
</member>
<member name="T:PostSharp.Aspects.ILocationInterceptionArgs`1">
<summary>
A strongly-typed specialization of the <see cref="T:PostSharp.Aspects.ILocationInterceptionArgs" /> interface.
</summary>
<typeparam name="T">Type of the location value.</typeparam>
</member>
<member name="P:PostSharp.Aspects.ILocationInterceptionArgs`1.Binding">
<summary>
Gets an interface that allows to invoke the next node in the chain of invocation of the intercepted method.
</summary>
</member>
<member name="M:PostSharp.Aspects.ILocationInterceptionArgs`1.GetCurrentValue">
<summary>
Retrieves the current value of the location without overwriting the <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Value" /> property.
</summary>
<returns>The current value of the location, as returned by the next node in the chain of invocation (see <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Binding" />).</returns>
</member>
<member name="M:PostSharp.Aspects.ILocationInterceptionArgs`1.SetNewValue(`0)">
<summary>
Sets the value of the location without overwriting the <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Value" /> property.
</summary>
<param name="value">The value to be passed to the next node in the chain of invocation (see <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Binding" />).</param>
</member>
<member name="P:PostSharp.Aspects.ILocationInterceptionArgs`1.Value">
<summary>
Gets or sets the location value.
</summary>
</member>
<member name="T:PostSharp.Aspects.ILocationInterceptionArgsAction`1">
<summary>
Exposes an <see cref="M:PostSharp.Aspects.ILocationInterceptionArgsAction`1.Execute``1(PostSharp.Aspects.ILocationInterceptionArgs{``0},`0@)" /> method invoked by the <see cref="M:PostSharp.Aspects.LocationInterceptionArgs.Execute``1(PostSharp.Aspects.ILocationInterceptionArgsAction{``0},``0@)" /> method,
which allows to execute strongly-typed operations and avoid boxing required by the weakly typed <see cref="T:PostSharp.Aspects.ILocationInterceptionArgs" /> interface.
</summary>
<typeparam name="TPayload">Type of the payload of the <see cref="M:PostSharp.Aspects.ILocationInterceptionArgsAction`1.Execute``1(PostSharp.Aspects.ILocationInterceptionArgs{``0},`0@)" /> method.</typeparam>
</member>
<member name="M:PostSharp.Aspects.ILocationInterceptionArgsAction`1.Execute``1(PostSharp.Aspects.ILocationInterceptionArgs{``0},`0@)">
<summary>
Method invoked by the <see cref="M:PostSharp.Aspects.LocationInterceptionArgs.Execute``1(PostSharp.Aspects.ILocationInterceptionArgsAction{``0},``0@)" /> method.
</summary>
<param name="args">The typed <see cref="T:PostSharp.Aspects.LocationInterceptionArgs" />.</param>
<param name="payload">Payload passed to the <see cref="M:PostSharp.Aspects.LocationInterceptionArgs.Execute``1(PostSharp.Aspects.ILocationInterceptionArgsAction{``0},``0@)" /> method.</param>
<typeparam name="TValue">Type of the value of the <see cref="T:PostSharp.Aspects.LocationInterceptionArgs" /> object.</typeparam>
</member>
<member name="T:PostSharp.Aspects.ILocationInterceptionAspect">
<summary>
Runtime semantics of an aspect that, when applied on a location (field or property), intercepts invocations of
the <c>Get</c> (<see cref="M:PostSharp.Aspects.ILocationInterceptionAspect.OnGetValue(PostSharp.Aspects.LocationInterceptionArgs)" />) and <c>Set</c> (<see cref="M:PostSharp.Aspects.ILocationInterceptionAspect.OnSetValue(PostSharp.Aspects.LocationInterceptionArgs)" />) semantics.
</summary>
</member>
<member name="M:PostSharp.Aspects.ILocationInterceptionAspect.OnGetValue(PostSharp.Aspects.LocationInterceptionArgs)">
<summary>
Method invoked <i>instead</i> of the <c>Get</c> semantic of the field or property to which the current aspect is applied,
i.e. when the value of this field or property is retrieved.
</summary>
<param name="args">Advice arguments.</param>
</member>
<member name="M:PostSharp.Aspects.ILocationInterceptionAspect.OnSetValue(PostSharp.Aspects.LocationInterceptionArgs)">
<summary>
Method invoked <i>instead</i> of the <c>Set</c> semantic of the field or property to which the current aspect is applied,
i.e. when the value of this field or property is changed.
</summary>
<param name="args">Advice arguments.</param>
</member>
<member name="T:PostSharp.Aspects.ILocationLevelAspect">
<summary>
Runtime semantics of aspects defined on a field, property, or parameter.
</summary>
</member>
<member name="M:PostSharp.Aspects.ILocationLevelAspect.RuntimeInitialize(PostSharp.Reflection.LocationInfo)">
<summary>
Initializes the current aspect.
</summary>
<param name="locationInfo">Location to which the current aspect is applied.</param>
</member>
<member name="T:PostSharp.Aspects.ILocationLevelAspectBuildSemantics">
<summary>
Compile-time semantics of <see cref="T:PostSharp.Aspects.ILocationLevelAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.ILocationLevelAspectBuildSemantics.CompileTimeInitialize(PostSharp.Reflection.LocationInfo,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="targetLocation">Location to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="T:PostSharp.Aspects.ILocationValidationAspect">
<summary>
Ancestor of <see cref="T:PostSharp.Aspects.ILocationValidationAspect`1" />.
</summary>
</member>
<member name="T:PostSharp.Aspects.ILocationValidationAspect`1">
<summary>
Runtime semantics of an aspect that, when applied on a location (field, property, or parameter),
validates the value assigned to this location using method <see cref="M:PostSharp.Aspects.ILocationValidationAspect`1.ValidateValue(`0,System.String,PostSharp.Reflection.LocationKind)" />, and throws
the exception returned by this method if any.
</summary>
<typeparam name="T">Type of values validated by the current aspect.</typeparam>
</member>
<member name="M:PostSharp.Aspects.ILocationValidationAspect`1.ValidateValue(`0,System.String,PostSharp.Reflection.LocationKind)">
<summary>
Validates the value being assigned to the location to which the current aspect has been applied.
</summary>
<param name="value">Value being applied to the location.</param>
<param name="locationName">Name of the location.</param>
<param name="locationKind">Location kind (<see cref="F:PostSharp.Reflection.LocationKind.Field" />, <see cref="F:PostSharp.Reflection.LocationKind.Property" />, or
<see cref="F:PostSharp.Reflection.LocationKind.Parameter" />).
</param>
<returns>The <see cref="T:System.Exception" /> to be thrown, or <c>null</c> if no exception needs to be thrown.</returns>
</member>
<member name="T:PostSharp.Aspects.IManagedResourceIntroductionAspect">
<summary>
Semantics of an aspect that, when applied to an assembly, adds a managed resource to this assembly.
</summary>
</member>
<member name="T:PostSharp.Aspects.IMethodBinding">
<summary>
Interface through which a method-level aspect or advice can
invoke the next node in the chain of invocation.
</summary>
</member>
<member name="M:PostSharp.Aspects.IMethodBinding.Invoke(System.Object@,PostSharp.Aspects.Arguments)">
<summary>
Invokes the next node in the chain of invocation.
</summary>
<param name="instance">Target instance on which the method should be invoked (<c>null</c> if the method is static).</param>
<param name="arguments">Method arguments.</param>
<returns>Return value of the method.</returns>
</member>
<member name="T:PostSharp.Aspects.IMethodInterceptionAspect">
<summary>
Runtime semantics of an aspect that, when applied on a method, intercepts invocations of this method.
</summary>
</member>
<member name="M:PostSharp.Aspects.IMethodInterceptionAspect.OnInvoke(PostSharp.Aspects.MethodInterceptionArgs)">
<summary>
Method invoked <i>instead</i> of the method to which the aspect has been applied.
</summary>
<param name="args">Advice arguments.</param>
</member>
<member name="T:PostSharp.Aspects.IMethodLevelAspect">
<summary>
Runtime semantics of aspects applied to methods.
</summary>
</member>
<member name="M:PostSharp.Aspects.IMethodLevelAspect.RuntimeInitialize(System.Reflection.MethodBase)">
<summary>
Initializes the current aspect.
</summary>
<param name="method">Method to which the current aspect is applied.</param>
</member>
<member name="T:PostSharp.Aspects.IMethodLevelAspectBuildSemantics">
<summary>
Compile-time semantics of <see cref="T:PostSharp.Aspects.IMethodLevelAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.IMethodLevelAspectBuildSemantics.CompileTimeInitialize(System.Reflection.MethodBase,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="method">Method to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="T:PostSharp.Aspects.InstanceCredentials">
<summary>
Credentials that give access to 'protected' semantics.
</summary>
</member>
<member name="M:PostSharp.Aspects.InstanceCredentials.AssertEquals(PostSharp.Aspects.InstanceCredentials)">
<summary>
Throws an exception if given credentials are not equal
to the current one.
</summary>
<param name="others">Other credentials.</param>
</member>
<member name="M:PostSharp.Aspects.InstanceCredentials.Equals(PostSharp.Aspects.InstanceCredentials)">
<summary>Indicates whether the current object is equal to another object of the same type.</summary>
<param name="other">An object to compare with this object.</param>
<returns>true if the current object is equal to the <paramref name="other" /> parameter; otherwise, false.</returns>
</member>
<member name="M:PostSharp.Aspects.InstanceCredentials.Equals(System.Object)">
<summary>Indicates whether this instance and a specified object are equal.</summary>
<param name="obj">The object to compare with the current instance. </param>
<returns>true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false. </returns>
</member>
<member name="M:PostSharp.Aspects.InstanceCredentials.GetHashCode">
<summary>Returns the hash code for this instance.</summary>
<returns>A 32-bit signed integer that is the hash code for this instance.</returns>
</member>
<member name="M:PostSharp.Aspects.InstanceCredentials.MakeNew">
<summary>
Creates a new <see cref="T:PostSharp.Aspects.InstanceCredentials" />.
</summary>
<returns>A new <see cref="T:PostSharp.Aspects.InstanceCredentials" />.</returns>
</member>
<member name="F:PostSharp.Aspects.InstanceCredentials.Null">
<summary>
Gets a null (or empty) <see cref="T:PostSharp.Aspects.InstanceCredentials" />/
</summary>
</member>
<member name="M:PostSharp.Aspects.InstanceCredentials.op_Equality(PostSharp.Aspects.InstanceCredentials,PostSharp.Aspects.InstanceCredentials)">
<summary>
Determines whether two <see cref="T:PostSharp.Aspects.InstanceCredentials" /> are equal.
</summary>
<param name="left">An <see cref="T:PostSharp.Aspects.InstanceCredentials" /> object.</param>
<param name="right">An <see cref="T:PostSharp.Aspects.InstanceCredentials" /> object.</param>
<returns>
<c>true</c> if <paramref name="left" /> equals <paramref name="right" />,
otherwise <c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.InstanceCredentials.op_Inequality(PostSharp.Aspects.InstanceCredentials,PostSharp.Aspects.InstanceCredentials)">
<summary>
Determines whether two <see cref="T:PostSharp.Aspects.InstanceCredentials" /> are different.
</summary>
<param name="left">An <see cref="T:PostSharp.Aspects.InstanceCredentials" /> object.</param>
<param name="right">An <see cref="T:PostSharp.Aspects.InstanceCredentials" /> object.</param>
<returns>
<c>true</c> if <paramref name="left" /> is different than <paramref name="right" />,
otherwise <c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.InstanceCredentials.ToString">
<summary>Returns the fully qualified type name of this instance.</summary>
<returns>A <see cref="T:System.String" /> containing a fully qualified type name.</returns>
</member>
<member name="T:PostSharp.Aspects.InstanceLevelAspect">
<summary>
Base class for aspects applied on types, but having the same lifetime as
instances of the type to which they are applied.
</summary>
</member>
<member name="M:PostSharp.Aspects.InstanceLevelAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.InstanceLevelAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.InstanceLevelAspect.CreateAspectConfiguration">
<summary>
Method invoked at build time to create a concrete <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance specifically
for the current <see cref="T:PostSharp.Aspects.Aspect" /> type.
</summary>
<returns>A new and empty instance of <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />, whose concrete type corresponds to
the concrete type of the <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="M:PostSharp.Aspects.InstanceLevelAspect.CreateInstance(PostSharp.Aspects.AdviceArgs)">
<summary>
Creates a new instance of the aspect based on the current instance, serving as a prototype.
</summary>
<param name="adviceArgs">Aspect arguments.</param>
<returns>A new instance of the aspect, typically a clone of the current prototype instance.</returns>
</member>
<member name="P:PostSharp.Aspects.InstanceLevelAspect.Instance">
<summary>
Gets the object to which the current aspect has been applied.
</summary>
</member>
<member name="M:PostSharp.Aspects.InstanceLevelAspect.OnCloned(PostSharp.Aspects.ICloneAwareAspect)">
<summary>
Method called after the an object enhanced by the current aspect has been
cloned using <see cref="M:System.Object.MemberwiseClone" />. The <c>this</c>
parameter refers to the new aspect instance in the cloned object.
</summary>
<param name="source">Aspect instance corresponding to the current
aspect instance in the cloned target object.</param>
</member>
<member name="M:PostSharp.Aspects.InstanceLevelAspect.RuntimeInitializeInstance">
<summary>
Initializes the aspect instance. This method is invoked when all system elements of the aspect (like member imports)
have completed.
</summary>
</member>
<member name="T:PostSharp.Aspects.IOnExceptionAspect">
<summary>
Runtime semantics of an aspect that, when applied on a method,
defines an exception handler around the whole method body
and let the implementation of this interface handle the exception.
</summary>
</member>
<member name="M:PostSharp.Aspects.IOnExceptionAspect.OnException(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed <b>after</b> the body of methods to which this aspect is applied,
in case that the method resulted with an exception (i.e., in a <c>catch</c> block).
</summary>
<param name="args">Advice arguments.</param>
</member>
<member name="T:PostSharp.Aspects.IOnMethodBoundaryAspect">
<summary>
Runtime semantics of <see cref="T:PostSharp.Aspects.OnMethodBoundaryAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.IOnMethodBoundaryAspect.OnEntry(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed <b>before</b> the body of methods to which this aspect is applied.
</summary>
<param name="args">Event arguments specifying which method
is being executed, which are its arguments, and how should the execution continue
after the execution of <see cref="M:PostSharp.Aspects.IOnMethodBoundaryAspect.OnEntry(PostSharp.Aspects.MethodExecutionArgs)" />.</param>
</member>
<member name="M:PostSharp.Aspects.IOnMethodBoundaryAspect.OnException(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed <b>after</b> the body of methods to which this aspect is applied,
in case that the method resulted with an exception.
</summary>
<param name="args">Event arguments specifying which method
is being executed and which are its arguments.</param>
</member>
<member name="M:PostSharp.Aspects.IOnMethodBoundaryAspect.OnExit(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed <b>after</b> the body of methods to which this aspect is applied,
even when the method exists with an exception (this method is invoked from
the <c>finally</c> block).
</summary>
<param name="args">Event arguments specifying which method
is being executed and which are its arguments.</param>
</member>
<member name="M:PostSharp.Aspects.IOnMethodBoundaryAspect.OnSuccess(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed <b>after</b> the body of methods to which this aspect is applied,
but only when the method successfully returns (i.e. when no exception flies out
the method.).
</summary>
<param name="args">Event arguments specifying which method
is being executed and which are its arguments.</param>
</member>
<member name="T:PostSharp.Aspects.IOnStateMachineBoundaryAspect">
<summary>
Extends the <see cref="T:PostSharp.Aspects.IOnMethodBoundaryAspect" /> interface with two advises
to be applied on state machines.
</summary>
</member>
<member name="M:PostSharp.Aspects.IOnStateMachineBoundaryAspect.OnResume(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed when a state machine resumes execution after an <c>yield return</c> or
<c>await</c> statement.
</summary>
<param name="args">Event arguments specifying which method
is being executed and which are its arguments.</param>
</member>
<member name="M:PostSharp.Aspects.IOnStateMachineBoundaryAspect.OnYield(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed when a state machine yields, as the result of an <c>yield return</c> or
<c>await</c> statement.
</summary>
<param name="args">Event arguments specifying which method
is being executed and which are its arguments. In iterator methods, the <see cref="P:PostSharp.Aspects.MethodExecutionArgs.YieldValue" />
property gives access to the operand of the <c>yield return</c> statement.</param>
</member>
<member name="T:PostSharp.Aspects.IProtectedInterface`1">
<summary>
Gives access to a 'protected' interface, typically introduced
by a <see cref="T:PostSharp.Aspects.CompositionAspect" /> or a <see cref="T:PostSharp.Aspects.Advices.IntroduceInterfaceAttribute" /></summary>
<typeparam name="T">Exposed interface.</typeparam>
</member>
<member name="M:PostSharp.Aspects.IProtectedInterface`1.GetInterface(PostSharp.Aspects.InstanceCredentials)">
<summary>
Gets a protected interface.
</summary>
<param name="credentials">Credentials of the current instance.</param>
<returns>The implementation of the interface <typeparamref name="T" />.</returns>
</member>
<member name="T:PostSharp.Aspects.ITypeLevelAspect">
<summary>
Run-time semantics of aspects applied to types.
</summary>
</member>
<member name="M:PostSharp.Aspects.ITypeLevelAspect.RuntimeInitialize(System.Type)">
<summary>
Initializes the current aspect.
</summary>
<param name="type">Type to which the current aspect is applied.</param>
</member>
<member name="T:PostSharp.Aspects.ITypeLevelAspectBuildSemantics">
<summary>
Compile-time semantics of <see cref="T:PostSharp.Aspects.ITypeLevelAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.ITypeLevelAspectBuildSemantics.CompileTimeInitialize(System.Type,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="type">Type to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="T:PostSharp.Aspects.LinesOfCodeAvoidedAttribute">
<summary>
Custom attribute that, when applied to an aspect class, specifies how many manual lines of code
are avoided every time the aspect is being used.
</summary>
</member>
<member name="M:PostSharp.Aspects.LinesOfCodeAvoidedAttribute.#ctor(System.Int32)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.LinesOfCodeAvoidedAttribute" />.
</summary>
<param name="lines">Number of lines of code saved every time the aspect is applied to a target class.</param>
</member>
<member name="P:PostSharp.Aspects.LinesOfCodeAvoidedAttribute.Count">
<summary>
Gets the number of lines of code saved every time the aspect is applied to a target class.
</summary>
</member>
<member name="T:PostSharp.Aspects.LocationBindingExtensions">
<summary>
Extension methods for the <see cref="T:PostSharp.Aspects.ILocationBinding" /> interface.
</summary>
</member>
<member name="M:PostSharp.Aspects.LocationBindingExtensions.GetValue(PostSharp.Aspects.ILocationBinding,System.Object)">
<summary>
Gets the value of a field or property.
</summary>
<param name="locationBinding">The binding for the field or property.</param>
<param name="instance">The instance for which the field or property is evaluated, or <c>null</c> if the location is static.</param>
<returns>The field or property value.</returns>
</member>
<member name="M:PostSharp.Aspects.LocationBindingExtensions.GetValue(PostSharp.Aspects.ILocationBinding,System.Object,PostSharp.Aspects.Arguments)">
<summary>
Gets the value of an indexer (property with arguments).
</summary>
<param name="locationBinding">The binding for the indexer.</param>
<param name="instance">The instance for which the indexer is evaluated, or <c>null</c> if the indexer is static.</param>
<param name="index">The arguments of the indexer.</param>
<returns>The indexer value.</returns>
</member>
<member name="M:PostSharp.Aspects.LocationBindingExtensions.GetValue``1(PostSharp.Aspects.ILocationBinding{``0},System.Object)">
<summary>
Gets the value of a field or property.
</summary>
<param name="locationBinding">The binding for the field or property.</param>
<param name="instance">The instance for which the field or property is evaluated, or <c>null</c> if the location is static.</param>
<typeparam name="T">
<markup>
<include item="SMCMissingParamTag">
<parameter>typeparam</parameter>
<parameter>T</parameter>
<parameter>M:PostSharp.Aspects.LocationBindingExtensions.GetValue``1(PostSharp.Aspects.ILocationBinding{``0},System.Object)</parameter>
</include>
</markup>
</typeparam>
<returns>The field or property value.</returns>
</member>
<member name="M:PostSharp.Aspects.LocationBindingExtensions.GetValue``1(PostSharp.Aspects.ILocationBinding{``0},System.Object,PostSharp.Aspects.Arguments)">
<summary>
Gets the value of an indexer (property with arguments).
</summary>
<param name="locationBinding">The binding for the indexer.</param>
<param name="instance">The instance for which the indexer is evaluated, or <c>null</c> if the indexer is static.</param>
<param name="index">The arguments of the indexer.</param>
<typeparam name="T">
<markup>
<include item="SMCMissingParamTag">
<parameter>typeparam</parameter>
<parameter>T</parameter>
<parameter>M:PostSharp.Aspects.LocationBindingExtensions.GetValue``1(PostSharp.Aspects.ILocationBinding{``0},System.Object,PostSharp.Aspects.Arguments)</parameter>
</include>
</markup>
</typeparam>
<returns>The indexer value.</returns>
</member>
<member name="M:PostSharp.Aspects.LocationBindingExtensions.SetValue(PostSharp.Aspects.ILocationBinding,System.Object,PostSharp.Aspects.Arguments,System.Object)">
<summary>
Sets the value of an indexer (property with arguments).
</summary>
<param name="locationBinding">The binding for the indexer.</param>
<param name="instance">The instance for which the indexer is set, or <c>null</c> if the indexer is static.</param>
<param name="index">The arguments of the indexer.</param>
<param name="value">The new value.</param>
<returns>The indexer value.</returns>
</member>
<member name="M:PostSharp.Aspects.LocationBindingExtensions.SetValue(PostSharp.Aspects.ILocationBinding,System.Object,System.Object)">
<summary>
Sets the value of a field or property.
</summary>
<param name="locationBinding">The binding for the field or property.</param>
<param name="instance">The instance for which the field or property is set, or <c>null</c> if the location is static.</param>
<param name="value">The new value assigned to the field or property.</param>
<returns>The field or property value.</returns>
</member>
<member name="M:PostSharp.Aspects.LocationBindingExtensions.SetValue``1(PostSharp.Aspects.ILocationBinding{``0},System.Object,PostSharp.Aspects.Arguments,``0)">
<summary>
Sets the value of an indexer (property with arguments).
</summary>
<param name="locationBinding">The binding for the indexer.</param>
<param name="instance">The instance for which the indexer is set, or <c>null</c> if the indexer is static.</param>
<param name="index">The arguments of the indexer.</param>
<param name="value">The new value.</param>
<typeparam name="T">
<markup>
<include item="SMCMissingParamTag">
<parameter>typeparam</parameter>
<parameter>T</parameter>
<parameter>M:PostSharp.Aspects.LocationBindingExtensions.SetValue``1(PostSharp.Aspects.ILocationBinding{``0},System.Object,PostSharp.Aspects.Arguments,``0)</parameter>
</include>
</markup>
</typeparam>
<returns>The indexer value.</returns>
</member>
<member name="M:PostSharp.Aspects.LocationBindingExtensions.SetValue``1(PostSharp.Aspects.ILocationBinding{``0},System.Object,``0)">
<summary>
Sets the value of a field or property.
</summary>
<param name="locationBinding">The binding for the field or property.</param>
<param name="instance">The instance for which the field or property is set, or <c>null</c> if the location is static.</param>
<param name="value">The new value assigned to the field or property.</param>
<typeparam name="T">
<markup>
<include item="SMCMissingParamTag">
<parameter>typeparam</parameter>
<parameter>T</parameter>
<parameter>M:PostSharp.Aspects.LocationBindingExtensions.SetValue``1(PostSharp.Aspects.ILocationBinding{``0},System.Object,``0)</parameter>
</include>
</markup>
</typeparam>
<returns>The field or property value.</returns>
</member>
<member name="T:PostSharp.Aspects.LocationInterceptionArgs">
<summary>
Arguments of advices of aspect type <see cref="T:PostSharp.Aspects.LocationInterceptionAspect" />.
</summary>
</member>
<member name="P:PostSharp.Aspects.LocationInterceptionArgs.Binding">
<summary>
Gets an interface that allows to invoke the next node in the chain of invocation of the intercepted method.
</summary>
</member>
<member name="M:PostSharp.Aspects.LocationInterceptionArgs.Execute``1(PostSharp.Aspects.ILocationInterceptionArgsAction{``0},``0@)">
<summary>
Executes a delegate for the current <see cref="T:PostSharp.Aspects.LocationInterceptionArgs" />. This method allows to
</summary>
<param name="action"></param>
<param name="payload"></param>
<typeparam name="TPayload"></typeparam>
</member>
<member name="M:PostSharp.Aspects.LocationInterceptionArgs.GetCurrentValue">
<summary>
Retrieves the current value of the location without overwriting the <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Value" /> property.
</summary>
<returns>The current value of the location, as returned by the next node in the chain of invocation (see <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Binding" />).</returns>
</member>
<member name="P:PostSharp.Aspects.LocationInterceptionArgs.Index">
<summary>
Gets the current index arguments (in case of a property with parameters).
</summary>
</member>
<member name="P:PostSharp.Aspects.LocationInterceptionArgs.Location">
<summary>
Gets the location (field, property or parameter) related to the aspect or advice being executed.
</summary>
</member>
<member name="P:PostSharp.Aspects.LocationInterceptionArgs.LocationFullName">
<summary>
Gets the full name (including the full name of the declaring type) of the location (field, property or parameter) related to the aspect or advice being executed.
</summary>
</member>
<member name="P:PostSharp.Aspects.LocationInterceptionArgs.LocationName">
<summary>
Gets the name of the location (field, property or parameter) related to the aspect or advice being executed.
</summary>
</member>
<member name="M:PostSharp.Aspects.LocationInterceptionArgs.ProceedGetValue">
<summary>
Invokes the <b>Get Location Value</b> semantic on the next node in the chain of invocation and stores the location value in the <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Value" /> property.
</summary>
</member>
<member name="M:PostSharp.Aspects.LocationInterceptionArgs.ProceedSetValue">
<summary>
Invokes the <b>Set Location Value</b> semantic on the next node in the chain of invocation and stores the value of the <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Value" /> property into
the location.
</summary>
</member>
<member name="M:PostSharp.Aspects.LocationInterceptionArgs.SetNewValue(System.Object)">
<summary>
Sets the value of the location without overwriting the <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Value" /> property.
</summary>
<param name="value">The value to be passed to the next node in the chain of invocation (see <see cref="P:PostSharp.Aspects.LocationInterceptionArgs.Binding" />).</param>
</member>
<member name="P:PostSharp.Aspects.LocationInterceptionArgs.Value">
<summary>
Gets or sets the location value.
</summary>
</member>
<member name="T:PostSharp.Aspects.LocationInterceptionAspect">
<summary>
Aspect that, when applied on a location (field or property), intercepts invocations of
the <c>Get</c> (<see cref="M:PostSharp.Aspects.LocationInterceptionAspect.OnGetValue(PostSharp.Aspects.LocationInterceptionArgs)" />) and <c>Set</c> (<see cref="M:PostSharp.Aspects.LocationInterceptionAspect.OnSetValue(PostSharp.Aspects.LocationInterceptionArgs)" />) semantics.
</summary>
</member>
<member name="M:PostSharp.Aspects.LocationInterceptionAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.LocationInterceptionAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.LocationInterceptionAspect.CreateAspectConfiguration">
<summary>
Method invoked at build time to create a concrete <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance specifically
for the current <see cref="T:PostSharp.Aspects.Aspect" /> type.
</summary>
<returns>A new and empty instance of <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />, whose concrete type corresponds to
the concrete type of the <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="M:PostSharp.Aspects.LocationInterceptionAspect.OnGetValue(PostSharp.Aspects.LocationInterceptionArgs)">
<summary>
Method invoked <i>instead</i> of the <c>Get</c> semantic of the field or property to which the current aspect is applied,
i.e. when the value of this field or property is retrieved.
</summary>
<param name="args">Advice arguments.</param>
</member>
<member name="M:PostSharp.Aspects.LocationInterceptionAspect.OnSetValue(PostSharp.Aspects.LocationInterceptionArgs)">
<summary>
Method invoked <i>instead</i> of the <c>Set</c> semantic of the field or property to which the current aspect is applied,
i.e. when the value of this field or property is changed.
</summary>
<param name="args">Advice arguments.</param>
</member>
<member name="T:PostSharp.Aspects.LocationLevelAspect">
<summary>
Base class for aspects defined in fields, properties, or parameters.
</summary>
</member>
<member name="M:PostSharp.Aspects.LocationLevelAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.LocationLevelAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.LocationLevelAspect.CompileTimeInitialize(PostSharp.Reflection.LocationInfo,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="targetLocation">Location to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="M:PostSharp.Aspects.LocationLevelAspect.CompileTimeValidate(PostSharp.Reflection.LocationInfo)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="locationInfo">Location to which the aspect has been applied</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable field, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.LocationLevelAspect.CompileTimeValidate(System.Object)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="target">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the aspect has been applied.</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable target, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.LocationLevelAspect.RuntimeInitialize(PostSharp.Reflection.LocationInfo)">
<summary>
Initializes the current aspect.
</summary>
<param name="locationInfo">Location to which the current aspect is applied.</param>
</member>
<member name="M:PostSharp.Aspects.LocationLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,PostSharp.Reflection.LocationInfo)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetLocation">Location to which the current aspect has been applied.</param>
</member>
<member name="M:PostSharp.Aspects.LocationLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Object)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.Aspect" />
has been applied.
</param>
</member>
<member name="T:PostSharp.Aspects.LocationValidationContext">
<summary>
Enumerates the possible contexts in which the location validation advices can be invoked.
</summary>
</member>
<member name="F:PostSharp.Aspects.LocationValidationContext.Precondition">
<summary>
The value is being validated on method entry.
</summary>
</member>
<member name="F:PostSharp.Aspects.LocationValidationContext.SuccessPostcondition">
<summary>
The value is being validated just before the method successfully returns.
</summary>
</member>
<member name="T:PostSharp.Aspects.ManagedResourceIntroductionAspect">
<summary>
Aspect that, when applied to an assembly, adds a custom attribute to this assembly.
</summary>
</member>
<member name="M:PostSharp.Aspects.ManagedResourceIntroductionAspect.#ctor(System.String,System.Byte[])">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.ManagedResourceIntroductionAspect" />.
</summary>
<param name="name">Name of the managed resource.</param>
<param name="data">Content of the managed resource.</param>
</member>
<member name="P:PostSharp.Aspects.ManagedResourceIntroductionAspect.Data">
<summary>
Gets the content of the managed resource.
</summary>
</member>
<member name="P:PostSharp.Aspects.ManagedResourceIntroductionAspect.Name">
<summary>
Gets the name of the managed resource.
</summary>
</member>
<member name="T:PostSharp.Aspects.MethodExecutionArgs">
<summary>
Arguments of advices of aspects of type <see cref="T:PostSharp.Aspects.OnMethodBoundaryAspect" /> and <see cref="T:PostSharp.Aspects.OnExceptionAspect" /></summary>
</member>
<member name="P:PostSharp.Aspects.MethodExecutionArgs.Arguments">
<summary>
Gets the arguments with which the method has been invoked.
</summary>
</member>
<member name="P:PostSharp.Aspects.MethodExecutionArgs.Exception">
<summary>
Gets the exception currently flying.
</summary>
</member>
<member name="P:PostSharp.Aspects.MethodExecutionArgs.FlowBehavior">
<summary>
Determines the control flow of the target method once the advice is exited.
</summary>
</member>
<member name="P:PostSharp.Aspects.MethodExecutionArgs.Method">
<summary>
Gets the method being executed.
</summary>
</member>
<member name="P:PostSharp.Aspects.MethodExecutionArgs.MethodExecutionTag">
<summary>
User-defined state information whose lifetime is linked to the
current method execution. Aspects derived from <see cref="T:PostSharp.Aspects.IOnMethodBoundaryAspect" />
should use this property to save state information between
different events (<see cref="M:PostSharp.Aspects.IOnMethodBoundaryAspect.OnEntry(PostSharp.Aspects.MethodExecutionArgs)" />,
<see cref="M:PostSharp.Aspects.IOnMethodBoundaryAspect.OnExit(PostSharp.Aspects.MethodExecutionArgs)" /> and <see cref="M:PostSharp.Aspects.IOnMethodBoundaryAspect.OnException(PostSharp.Aspects.MethodExecutionArgs)" />).
</summary>
</member>
<member name="P:PostSharp.Aspects.MethodExecutionArgs.ReturnValue">
<summary>
Gets or sets the method return value.
</summary>
</member>
<member name="P:PostSharp.Aspects.MethodExecutionArgs.YieldValue">
<summary>
Gets or sets the value yielded by the iterator method.
</summary>
</member>
<member name="T:PostSharp.Aspects.MethodImplementationAspect">
<summary>
Aspect that, when applied on an abstract or <c>extern</c> method, creates an implementation for this method.
</summary>
</member>
<member name="M:PostSharp.Aspects.MethodImplementationAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.MethodImplementationAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.MethodImplementationAspect.CreateAspectConfiguration">
<summary>
Method invoked at build time to create a concrete <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance specifically
for the current <see cref="T:PostSharp.Aspects.Aspect" /> type.
</summary>
<returns>A new and empty instance of <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />, whose concrete type corresponds to
the concrete type of the <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="M:PostSharp.Aspects.MethodImplementationAspect.OnInvoke(PostSharp.Aspects.MethodInterceptionArgs)">
<summary>
Method invoked <i>instead</i> of the method to which the aspect has been applied.
</summary>
<param name="args">Advice arguments.</param>
</member>
<member name="T:PostSharp.Aspects.MethodInterceptionArgs">
<summary>
Arguments of advices of aspect type <see cref="T:PostSharp.Aspects.MethodInterceptionAspect" />.
</summary>
</member>
<member name="P:PostSharp.Aspects.MethodInterceptionArgs.Arguments">
<summary>
Gets the list of arguments with which the method has been invoked.
</summary>
</member>
<member name="P:PostSharp.Aspects.MethodInterceptionArgs.Binding">
<summary>
Gets an interface that allows to invoke the next node in the chain of invocation of the intercepted method.
</summary>
</member>
<member name="M:PostSharp.Aspects.MethodInterceptionArgs.Invoke(PostSharp.Aspects.Arguments)">
<summary>
Invokes the method that has been intercepted by calling the next node in the chain of invocation with given arguments,
without affecting the property <see cref="P:PostSharp.Aspects.MethodInterceptionArgs.ReturnValue" />.
</summary>
<param name="arguments">Arguments passed to the intercepted method.</param>
<returns>Value returned by the intercepted method.</returns>
</member>
<member name="P:PostSharp.Aspects.MethodInterceptionArgs.Method">
<summary>
Gets the method being executed.
</summary>
</member>
<member name="M:PostSharp.Aspects.MethodInterceptionArgs.Proceed">
<summary>
Proceeds with invocation of the method that has been intercepted by calling the next node in the chain of invocation,
passing the current <see cref="P:PostSharp.Aspects.MethodInterceptionArgs.Arguments" /> to that method and
storing its return value into the property <see cref="P:PostSharp.Aspects.MethodInterceptionArgs.ReturnValue" />.
</summary>
</member>
<member name="P:PostSharp.Aspects.MethodInterceptionArgs.ReturnValue">
<summary>
Gets or sets the return value of the method.
</summary>
</member>
<member name="T:PostSharp.Aspects.MethodInterceptionAspect">
<summary>
Aspect that, when applied on a method, intercepts invocations of this method.
</summary>
</member>
<member name="M:PostSharp.Aspects.MethodInterceptionAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.MethodInterceptionAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.MethodInterceptionAspect.CreateAspectConfiguration">
<summary>
Method invoked at build time to create a concrete <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance specifically
for the current <see cref="T:PostSharp.Aspects.Aspect" /> type.
</summary>
<returns>A new and empty instance of <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />, whose concrete type corresponds to
the concrete type of the <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="M:PostSharp.Aspects.MethodInterceptionAspect.OnInvoke(PostSharp.Aspects.MethodInterceptionArgs)">
<summary>
Method invoked <i>instead</i> of the method to which the aspect has been applied.
</summary>
<param name="args">Advice arguments.</param>
</member>
<member name="T:PostSharp.Aspects.MethodLevelAspect">
<summary>
Base class for all aspects applied on methods.
</summary>
</member>
<member name="M:PostSharp.Aspects.MethodLevelAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.MethodLevelAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.MethodLevelAspect.CompileTimeInitialize(System.Reflection.MethodBase,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="method">Method to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="M:PostSharp.Aspects.MethodLevelAspect.CompileTimeValidate(System.Object)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="target">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the aspect has been applied.</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable target, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.MethodLevelAspect.CompileTimeValidate(System.Reflection.MethodBase)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="method">Method to which the aspect has been applied</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable field, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.MethodLevelAspect.RuntimeInitialize(System.Reflection.MethodBase)">
<summary>
Initializes the current aspect.
</summary>
<param name="method">Method to which the current aspect is applied.</param>
</member>
<member name="M:PostSharp.Aspects.MethodLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Object)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.Aspect" />
has been applied.
</param>
</member>
<member name="M:PostSharp.Aspects.MethodLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Reflection.MethodBase)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetMethod">Method to which the current aspect has been applied.</param>
</member>
<member name="T:PostSharp.Aspects.ModuleInitializerAttribute">
<summary>
Custom attribute that, when added to a static method, causes the method to be executed immediately
after the assembly is loaded by the CLR. The target method must be public, parameterless, void, and non-generic.
</summary>
</member>
<member name="M:PostSharp.Aspects.ModuleInitializerAttribute.#ctor(System.Int32)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.ModuleInitializerAttribute" />.
</summary>
<param name="order">Order in which the <see cref="T:PostSharp.Aspects.ModuleInitializerAttribute" /> will be executed if the
current project contains several initializers. Initializers with smaller values of the <paramref name="order" />
parameter get invoked first.</param>
</member>
<member name="P:PostSharp.Aspects.ModuleInitializerAttribute.Order">
<summary>
Gets the order in which the <see cref="T:PostSharp.Aspects.ModuleInitializerAttribute" /> will be executed if the
current project contains several initializers. Initializers with smaller values of the <see cref="P:PostSharp.Aspects.ModuleInitializerAttribute.Order" />
property get invoked first.
</summary>
</member>
<member name="T:PostSharp.Aspects.OnExceptionAspect">
<summary>
Aspect that, when applied to a method, defines an exception
handler around the whole method and calls a custom method in this exception
handler.
</summary>
</member>
<member name="M:PostSharp.Aspects.OnExceptionAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.OnExceptionAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.OnExceptionAspect.ApplyToStateMachine">
<summary>
Determines how the aspect should behave when it is applied to an iterator or
async methods, which are compiled into state machines.
</summary>
</member>
<member name="M:PostSharp.Aspects.OnExceptionAspect.CreateAspectConfiguration">
<summary>
Method invoked at build time to create a concrete <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance specifically
for the current <see cref="T:PostSharp.Aspects.Aspect" /> type.
</summary>
<returns>A new and empty instance of <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />, whose concrete type corresponds to
the concrete type of the <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="M:PostSharp.Aspects.OnExceptionAspect.GetExceptionType(System.Reflection.MethodBase)">
<summary>
Gets the type of exception handled by this aspect.
</summary>
<param name="targetMethod">Method to which the current aspect is applied.</param>
<returns>The type (derived from <see cref="T:System.Exception" />) of exceptions handled
by this aspect.</returns>
</member>
<member name="M:PostSharp.Aspects.OnExceptionAspect.OnException(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed <b>after</b> the body of methods to which this aspect is applied,
in case that the method resulted with an exception (i.e., in a <c>catch</c> block).
</summary>
<param name="args">Advice arguments.</param>
</member>
<member name="M:PostSharp.Aspects.OnExceptionAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Reflection.MethodBase)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetMethod">Method to which the current aspect has been applied.</param>
</member>
<member name="T:PostSharp.Aspects.OnMethodBoundaryAspect">
<summary>
Aspect that, when applied to a method defined in the current assembly, inserts a piece
of code before and after the body of these methods.
</summary>
</member>
<member name="M:PostSharp.Aspects.OnMethodBoundaryAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.OnMethodBoundaryAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.OnMethodBoundaryAspect.ApplyToStateMachine">
<summary>
Determines how the aspect should behave when it is applied to an iterator or
async methods, which are compiled into state machines.
</summary>
</member>
<member name="M:PostSharp.Aspects.OnMethodBoundaryAspect.CreateAspectConfiguration">
<summary>
Method invoked at build time to create a concrete <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance specifically
for the current <see cref="T:PostSharp.Aspects.Aspect" /> type.
</summary>
<returns>A new and empty instance of <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />, whose concrete type corresponds to
the concrete type of the <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnEntry(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed <b>before</b> the body of methods to which this aspect is applied.
</summary>
<param name="args">Event arguments specifying which method
is being executed, which are its arguments, and how should the execution continue
after the execution of <see cref="M:PostSharp.Aspects.IOnMethodBoundaryAspect.OnEntry(PostSharp.Aspects.MethodExecutionArgs)" />.</param>
</member>
<member name="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnException(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed <b>after</b> the body of methods to which this aspect is applied,
in case that the method resulted with an exception.
</summary>
<param name="args">Event arguments specifying which method
is being executed and which are its arguments.</param>
</member>
<member name="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnExit(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed <b>after</b> the body of methods to which this aspect is applied,
even when the method exists with an exception (this method is invoked from
the <c>finally</c> block).
</summary>
<param name="args">Event arguments specifying which method
is being executed and which are its arguments.</param>
</member>
<member name="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnResume(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed when a state machine resumes execution after an <c>yield return</c> or
<c>await</c> statement.
</summary>
<param name="args">Event arguments specifying which method
is being executed and which are its arguments.</param>
</member>
<member name="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnSuccess(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed <b>after</b> the body of methods to which this aspect is applied,
but only when the method successfully returns (i.e. when no exception flies out
the method.).
</summary>
<param name="args">Event arguments specifying which method
is being executed and which are its arguments.</param>
</member>
<member name="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnYield(PostSharp.Aspects.MethodExecutionArgs)">
<summary>
Method executed when a state machine yields, as the result of an <c>yield return</c> or
<c>await</c> statement.
</summary>
<param name="args">Event arguments specifying which method
is being executed and which are its arguments. In iterator methods, the <see cref="P:PostSharp.Aspects.MethodExecutionArgs.YieldValue" />
property gives access to the operand of the <c>yield return</c> statement.</param>
</member>
<member name="M:PostSharp.Aspects.OnMethodBoundaryAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Reflection.MethodBase)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetMethod">Method to which the current aspect has been applied.</param>
</member>
<member name="T:PostSharp.Aspects.TypeIdentity">
<summary>
Wraps a <see cref="P:PostSharp.Aspects.TypeIdentity.Type" /> or a type name.
</summary>
</member>
<member name="M:PostSharp.Aspects.TypeIdentity.FromType(System.Type)">
<summary>
Wraps a <see cref="P:PostSharp.Aspects.TypeIdentity.Type" /> into a <see cref="T:PostSharp.Aspects.TypeIdentity" />.
</summary>
<param name="type">A <see cref="P:PostSharp.Aspects.TypeIdentity.Type" />.</param>
<returns>A <see cref="T:PostSharp.Aspects.TypeIdentity" /> wrapping <paramref cref="F:PostSharp.Aspects.TypeIdentity.type" />.</returns>
</member>
<member name="M:PostSharp.Aspects.TypeIdentity.FromTypeName(System.String)">
<summary>
Wraps a type name into a <see cref="T:PostSharp.Aspects.TypeIdentity" />.
</summary>
<param name="typeName">The type name.</param>
<returns>A <see cref="T:PostSharp.Aspects.TypeIdentity" /> wrapping the type name.</returns>
</member>
<member name="M:PostSharp.Aspects.TypeIdentity.FromTypeNames(System.String[])">
<summary>
Wraps an array of type names into an array of <see cref="T:PostSharp.Aspects.TypeIdentity" />.
</summary>
<param name="typeNames">An array of type names.</param>
<returns>An array of <see cref="T:PostSharp.Aspects.TypeIdentity" /> wrapping <paramref name="typeNames" />.</returns>
</member>
<member name="M:PostSharp.Aspects.TypeIdentity.FromTypes(System.Type[])">
<summary>
Wraps an array of <see cref="P:PostSharp.Aspects.TypeIdentity.Type" /> into an array of <see cref="T:PostSharp.Aspects.TypeIdentity" />.
</summary>
<param name="types">An array of <see cref="P:PostSharp.Aspects.TypeIdentity.Type" />.</param>
<returns>An array of <see cref="T:PostSharp.Aspects.TypeIdentity" /> wrapping <paramref name="types" />.</returns>
</member>
<member name="M:PostSharp.Aspects.TypeIdentity.ToType">
<summary>
Converts a <see cref="T:PostSharp.Aspects.TypeIdentity" /> into a <see cref="T:System.Type" />.
</summary>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.TypeIdentity.ToType</parameter>
</include>
</markup>
</returns>
</member>
<member name="P:PostSharp.Aspects.TypeIdentity.Type">
<summary>
Gets the wrapped <see cref="P:PostSharp.Aspects.TypeIdentity.Type" />, or <c>null</c> it the <see cref="P:PostSharp.Aspects.TypeIdentity.TypeName" /> property is set.
</summary>
</member>
<member name="P:PostSharp.Aspects.TypeIdentity.TypeName">
<summary>
Gets the wrapped type name, or <c>null</c> it the <see cref="P:PostSharp.Aspects.TypeIdentity.Type" /> property is set.
</summary>
</member>
<member name="T:PostSharp.Aspects.TypeLevelAspect">
<summary>
Base class for all aspects applied on types.
</summary>
</member>
<member name="M:PostSharp.Aspects.TypeLevelAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.TypeLevelAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.TypeLevelAspect.CompileTimeInitialize(System.Type,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="type">Type to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="M:PostSharp.Aspects.TypeLevelAspect.CompileTimeValidate(System.Object)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="target">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the aspect has been applied.</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable target, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.TypeLevelAspect.CompileTimeValidate(System.Type)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="type">Type to which the aspect has been applied</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable field, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.TypeLevelAspect.RuntimeInitialize(System.Type)">
<summary>
Initializes the current aspect.
</summary>
<param name="type">Type to which the current aspect is applied.</param>
</member>
<member name="M:PostSharp.Aspects.TypeLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Object)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.Aspect" />
has been applied.
</param>
</member>
<member name="M:PostSharp.Aspects.TypeLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Type)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetType">Type to which the current aspect has been applied.</param>
</member>
<member name="T:PostSharp.Aspects.Advices.Advice">
<summary>
Base class for all custom attributes representing an advice.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.Advice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.Advice</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.Advice.Description">
<summary>
A human-readable description of the current advice.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.Advice.LinesOfCodeAvoided">
<summary>
Reduction in the code lines count achieved by applying the advice instance to one code element.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.AdviceInstance">
<summary>
Base class for advice instances, which can be provided dynamically by the aspect thanks to the <see cref="T:PostSharp.Aspects.Advices.IAdviceProvider" /> interface.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.AdviceInstance.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.AdviceInstance</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.AdviceInstance.Description">
<summary>
A human-readable description of the current advice instance.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.AdviceInstance.LinesOfCodeAvoided">
<summary>
The number of lines of hand-written code avoided by this specific <see cref="T:PostSharp.Aspects.Advices.AdviceInstance" />.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.AdviceInstance.MasterAspectMember">
<summary>
Gets the main field or method of the aspect class that the current <see cref="T:PostSharp.Aspects.Advices.AdviceInstance" /> relates to.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.AspectInitializationReason">
<summary>
Enumerates the reasons why the target method of the <see cref="T:PostSharp.Aspects.Advices.InitializeAspectInstanceAdvice" /> has been invoked.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.AspectInitializationReason.None">
<summary>
None.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.AspectInitializationReason.Manual">
<summary>
Manual call of the <c>InitializeAspects</c> method.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.AspectInitializationReason.Constructor">
<summary>
Call from the instance constructor.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.AspectInitializationReason.Clone">
<summary>
Call from <c>MemberwiseClone</c>.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.AspectInitializationReason.Deserialize">
<summary>
Call during deserialization.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.CopyCustomAttributesAttribute">
<summary>
Custom attribute that, when applied on an aspect class, requires custom
attributes present on the aspect class to be copied to the target of this class.
When applied on an introduced member (see <see cref="T:PostSharp.Aspects.Advices.IntroduceMemberAttribute" />),
this custom attribute requires custom attributes present on the aspect member
to be copied to the introduced member.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.CopyCustomAttributesAttribute.#ctor(System.Type)">
<summary>
Requires custom attributes present on the aspect class or aspect class member
to be copied to the aspect target or to the introduced member, respectively.
</summary>
<param name="type">Base type of custom attributes to be copied.</param>
</member>
<member name="M:PostSharp.Aspects.Advices.CopyCustomAttributesAttribute.#ctor(System.Type[])">
<summary>
Requires custom attributes present on the aspect class or aspect class member
to be copied to the aspect target or to the introduced member, respectively.
</summary>
<param name="types">Base types of custom attributes to be copied.</param>
</member>
<member name="P:PostSharp.Aspects.Advices.CopyCustomAttributesAttribute.OverrideAction">
<summary>
Determines what should happen when a custom attribute of the same
type is already present on the target declaration.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.CopyCustomAttributesAttribute.Types">
<summary>
Gets the list of custom attribute types to be copied.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.CustomAttributeOverrideAction">
<summary>
Behavior of <see cref="T:PostSharp.Aspects.Advices.CopyCustomAttributesAttribute" /> when a custom
attribute of the same type already exists on the target declaration.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.CustomAttributeOverrideAction.Default">
<summary>
Default (<see cref="F:PostSharp.Aspects.Advices.CustomAttributeOverrideAction.Fail" />).
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.CustomAttributeOverrideAction.Fail">
<summary>
Emits an error message.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.CustomAttributeOverrideAction.Ignore">
<summary>
Silently ignore this custom attribute (does not copy it, without
error message).
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.CustomAttributeOverrideAction.Add">
<summary>
Adds a new copy (possibly duplicate) of the custom attribute.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.CustomAttributeOverrideAction.MergeAddProperty">
<summary>
Merges the existing custom attribute with the template custom attribute
by adding properties and fields. If the existing custom attribute defines
the same properties and fields as the template custom attribute,
they are not overridden.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.CustomAttributeOverrideAction.MergeReplaceProperty">
<summary>
Merges the existing custom attribute with the template custom attribute
by adding and replacing properties and fields. If the existing custom
attribute defines the same properties and fields as the template custom
attribute, they are replaced by the values defined in the template
custom attribute.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.Event`1">
<summary>
Exposes the semantics of an event for use with the <see cref="T:PostSharp.Aspects.Advices.ImportMemberAttribute" /> aspect extension.
</summary>
<typeparam name="TDelegate">Handler type (derived from <see cref="T:System.Delegate" />).</typeparam>
</member>
<member name="P:PostSharp.Aspects.Advices.Event`1.Add">
<summary>
Gets a delegate enabling to invoke the <b>add</b> accessor
of the imported event.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.Event`1.Remove">
<summary>
Gets a delegate enabling to invoke the <b>remove</b> accessor
of the imported event.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.EventAccessor`1">
<summary>
Defines the signature of methods implementing the <see cref="P:PostSharp.Aspects.Advices.Event`1.Add" />
and <see cref="P:PostSharp.Aspects.Advices.Event`1.Remove" /> semantics of an event.
</summary>
<param name="delegate">Handler.</param>
<typeparam name="TDelegate">Handler type (derived from <see cref="T:System.Delegate" />).</typeparam>
</member>
<member name="T:PostSharp.Aspects.Advices.GroupingAdvice">
<summary>
Base class for all advices that are possibly composed of
multiple advices that can be grouped together using the <see cref="P:PostSharp.Aspects.Advices.GroupingAdvice.Master" />
property.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.GroupingAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.GroupingAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.GroupingAdvice.Master">
<summary>
Name of the master advice method. If this property is not set,
the current method is itself the master of the group. Only
master methods can define selectors (<see cref="T:PostSharp.Aspects.Advices.Pointcut" />)
and dependencies (<see cref="T:PostSharp.Aspects.Dependencies.AspectDependencyAttribute" />).
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.IAdviceProvider">
<summary>
Interface that allows an aspect to provide aspects dynamically, instead of declaratively using custom attributes.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.IAdviceProvider.ProvideAdvices(System.Object)">
<summary>
Provides an enumeration of advices, represented as instances of the <see cref="T:PostSharp.Aspects.Advices.AdviceInstance" /> class, for the current aspect instance.
</summary>
<param name="targetElement">Element of code to which the current aspect has been applied.</param>
<returns>A collection of advices to be added to the current aspect instance.</returns>
</member>
<member name="T:PostSharp.Aspects.Advices.ImportLocationAdviceInstance">
<summary>
Represents an advice that imports a field or property (represented by a <see cref="T:PostSharp.Reflection.LocationInfo" />) of the target class
into a field of the aspect class. This class is the imperative equivalent of the <see cref="T:PostSharp.Aspects.Advices.ImportMemberAttribute" /> declarative advise.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.ImportLocationAdviceInstance.#ctor(System.Reflection.FieldInfo,PostSharp.Reflection.LocationInfo)">
<summary>
Initializes a new instance of the <see cref="T:PostSharp.Aspects.Advices.ImportLocationAdviceInstance" /> class and specifies which field or property should be imported by giving its reflection representation.
</summary>
<param name="aspectField">A field of the aspect class to which <paramref name="location" /> should be bound at runtime.
This field can be of type <see cref="T:PostSharp.Aspects.ILocationBinding" />, <see cref="T:PostSharp.Aspects.Advices.Property`1" />, or a type that is both (a) derived from <c>ICollection&lt;ILocationBinding&gt;</c> and (b) has a parameterless constructor.</param>
<param name="location">The field or property to import.</param>
</member>
<member name="M:PostSharp.Aspects.Advices.ImportLocationAdviceInstance.#ctor(System.Reflection.FieldInfo,System.String,System.Boolean,PostSharp.Aspects.Advices.ImportMemberOrder)">
<summary>
Initializes a new instance of the <see cref="T:PostSharp.Aspects.Advices.ImportLocationAdviceInstance" /> class and specifies the name of the property to be imported; the type of this
property will be matched according to the type of the aspect field.
</summary>
<param name="aspectField">A field of the aspect class to which the field or property should be bound at build time.
This field must be of type <see cref="T:PostSharp.Aspects.Advices.Property`1" />.</param>
<param name="propertyName">The name of the property to import.</param>
<param name="isRequired">Determines whether a build-time error should be emitted if the member cannot be found.
If <c>false</c>, the binding field will be <c>null</c> in case the imported member is absent.
</param>
<param name="order">Determines whether the <paramref name="aspectField" /> should be bound to the member
as resolved before or after introduction of new members into the target class by the current advise.</param>
</member>
<member name="M:PostSharp.Aspects.Advices.ImportLocationAdviceInstance.#ctor(System.Reflection.FieldInfo,System.String[],System.Boolean,PostSharp.Aspects.Advices.ImportMemberOrder)">
<summary>
Initializes a new instance of the <see cref="T:PostSharp.Aspects.Advices.ImportLocationAdviceInstance" /> class and specifies the name of the property to be imported; the type of this
property will be matched according to the type of the aspect field.
</summary>
<param name="aspectField">A field of the aspect class to which the field or property should be bound at build time.
This field must be of type <see cref="T:PostSharp.Aspects.Advices.Property`1" />.</param>
<param name="propertyNames">Fallback list of possible names of the property to import.</param>
<param name="isRequired">Determines whether a build-time error should be emitted if the member cannot be found.
If <c>false</c>, the binding field will be <c>null</c> in case the imported member is absent.
</param>
<param name="order">Determines whether the <paramref name="aspectField" /> should be bound to the member
as resolved before or after introduction of new members into the target class by the current advise.</param>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportLocationAdviceInstance.Location">
<summary>
Gets the field or property of the target class that needs to be imported into the aspect.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportLocationAdviceInstance.Member">
<summary>
Gets the reflection object (<see cref="T:PostSharp.Reflection.LocationInfo" /> or <see cref="T:System.Reflection.MethodInfo" />) that needs to be
imported, or <c>null</c> if the exact member is unknown and must be matched by name and signature.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportLocationAdviceInstance.MemberNames">
<summary>
Gets the fallback list of possible names of the member to be imported.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.ImportMemberAdviceInstance">
<summary>
Base class for <see cref="T:PostSharp.Aspects.Advices.ImportLocationAdviceInstance" /> and <see cref="T:PostSharp.Aspects.Advices.ImportMethodAdviceInstance" />.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportMemberAdviceInstance.AspectField">
<summary>
Gets the field of the aspect class to which the field or property needs to be bound.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportMemberAdviceInstance.IsRequired">
<summary>
Determines whether a build-time error should be emitted if the member cannot be found.
If <c>false</c>, the binding field will be <c>null</c> in case the imported member is absent.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportMemberAdviceInstance.MasterAspectMember">
<summary>
Gets the main field or method of the aspect class that the current <see cref="T:PostSharp.Aspects.Advices.AdviceInstance" /> relates to.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportMemberAdviceInstance.Member">
<summary>
Gets the reflection object (<see cref="T:PostSharp.Reflection.LocationInfo" /> or <see cref="T:System.Reflection.MethodInfo" />) that needs to be
imported, or <c>null</c> if the exact member is unknown and must be matched by name and signature.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportMemberAdviceInstance.MemberNames">
<summary>
Gets the fallback list of possible names of the member to be imported.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportMemberAdviceInstance.Order">
<summary>
Determines whether the <see cref="P:PostSharp.Aspects.Advices.ImportMemberAdviceInstance.AspectField" /> should be bound to the member
as resolved before or after introduction of new members into the target class by the current advise.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.ImportMemberAttribute">
<summary>
Custom attribute that, when applied to an instance field of an aspect class, determines
that this field should be bound to a method, event or property, of the
target class of this aspect. Valid types for fields are
a concrete <see cref="T:System.Delegate" /> (to bind to a method),
<see cref="T:PostSharp.Aspects.Advices.Property`1" /> or <see cref="T:PostSharp.Aspects.Advices.Property`2" />
(to bind to a property), or <see cref="T:PostSharp.Aspects.Advices.Event`1" /> (to bind to an event).
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.ImportMemberAttribute.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Advices.ImportMemberAttribute" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.ImportMemberAttribute.#ctor(System.String)">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.ImportMemberAttribute</parameter>
</include>
</markup>
</summary>
<param name="memberName">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>memberName</parameter>
<parameter>M:PostSharp.Aspects.Advices.ImportMemberAttribute.#ctor(System.String)</parameter>
</include>
</markup>
</param>
</member>
<member name="M:PostSharp.Aspects.Advices.ImportMemberAttribute.#ctor(System.String[])">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Advices.ImportMemberAttribute" />.
</summary>
<param name="memberNames">Possible names of the member to import in the order of precedence.</param>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportMemberAttribute.IsRequired">
<summary>
Determines whether a build time error must be issued if the member to be
imported is absent. If <c>false</c>, the binding field will be <c>null</c>
in case the imported member is absent.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportMemberAttribute.MemberName">
<summary>
Name of the imported member.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportMemberAttribute.MemberNames">
<summary>
Array of possible names of imported member in the order of precedence.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportMemberAttribute.Order">
<summary>
Determines when the member should be imported: either before (<see cref="F:PostSharp.Aspects.Advices.ImportMemberOrder.BeforeIntroductions" />)
or after (<see cref="F:PostSharp.Aspects.Advices.ImportMemberOrder.AfterIntroductions" />) members have been introduced by the current aspect.
Default is <see cref="F:PostSharp.Aspects.Advices.ImportMemberOrder.BeforeIntroductions" />.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.ImportMemberOrder">
<summary>
Enumeration of moments when members should be imported into an aspect.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.ImportMemberOrder.Default">
<summary>
<see cref="F:PostSharp.Aspects.Advices.ImportMemberOrder.AfterIntroductions" />
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.ImportMemberOrder.BeforeIntroductions">
<summary>
Before the aspect introduces its own members. This is similar to calling the overridden method using the
<c>base</c> keyword in C#. The overridden method implementation is always selected, even if the method
is virtual.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.ImportMemberOrder.AfterIntroductions">
<summary>
After the aspect introduces its own members. Note that importing a member introduced by the current
aspect makes sense only if the member has been introduced as virtual; in this case, the
the imported member is dynamically resolved using the virtual table of the target object.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.ImportMethodAdviceInstance">
<summary>
Represents an advises that import a method of the target class into the aspect class.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.ImportMethodAdviceInstance.#ctor(System.Reflection.FieldInfo,System.String,System.Boolean,PostSharp.Aspects.Advices.ImportMemberOrder)">
<summary>
Initializes a new instance of the <see cref="T:PostSharp.Aspects.Advices.ImportMethodAdviceInstance" />.
</summary>
<param name="aspectField">A field of the aspect class into that will be assigned to a delegate of the imported method at runtime. The field type should be a delegate of the same signature than the method to import.</param>
<param name="methodName">Name of the method to import.</param>
<param name="isRequired">
<c>true</c> if the build should fail if there no matching method in the target class, <c>false</c> to set <paramref name="aspectField" /> to <c>null</c> in this case.</param>
<param name="order">Determines whether the <paramref name="aspectField" /> should be bound to the member
as resolved before or after introduction of new members into the target class by the current advise.
</param>
</member>
<member name="M:PostSharp.Aspects.Advices.ImportMethodAdviceInstance.#ctor(System.Reflection.FieldInfo,System.String[],System.Boolean,PostSharp.Aspects.Advices.ImportMemberOrder)">
<summary>
Initializes a new instance of the <see cref="T:PostSharp.Aspects.Advices.ImportMethodAdviceInstance" />.
</summary>
<param name="aspectField">A field of the aspect class into that will be assigned to a delegate of the imported method at runtime. The field type should be a delegate of the same signature than the method to import.</param>
<param name="methodNames">Fallback list of possible names of the member to be imported.</param>
<param name="isRequired">
<c>true</c> if the build should fail if there no matching method in the target class, <c>false</c> to set <paramref name="aspectField" /> to <c>null</c> in this case.</param>
<param name="order">Determines whether the <paramref name="aspectField" /> should be bound to the member
as resolved before or after introduction of new members into the target class by the current advise.
</param>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportMethodAdviceInstance.Member">
<summary>
Gets the reflection object (<see cref="T:PostSharp.Reflection.LocationInfo" /> or <see cref="T:System.Reflection.MethodInfo" />) that needs to be
imported, or <c>null</c> if the exact member is unknown and must be matched by name and signature.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.ImportMethodAdviceInstance.MemberNames">
<summary>
Gets the fallback list of possible names of the member to be imported.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.InitializeAspectInstanceAdvice">
<summary>
Custom attribute that, when applied to a method of an aspect class, specifies that this method
should be invoked whenever the aspect instance needs to be initialized. The target method
must have a <c>void</c> return value and have a single parameter of type <see cref="T:PostSharp.Aspects.Advices.AspectInitializationReason" />.
This method is equivalent to <see cref="M:PostSharp.Aspects.IInstanceScopedAspect.RuntimeInitializeInstance" /></summary>
</member>
<member name="M:PostSharp.Aspects.Advices.InitializeAspectInstanceAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.InitializeAspectInstanceAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.InterfaceOverrideAction">
<summary>
Enumeration of actions to be overtaken when an interface that should be introduced into a type is already
implemented by that type.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Default">
<summary>
<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail">
<summary>
Fails and emits an error message.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore">
<summary>
Silently ignore this interface (does not introduce it).
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.IntroduceInterfaceAdviceInstance">
<summary>
Represents an advise that introduces an interface into the target class. The interface must be implemented by the aspect class.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.IntroduceInterfaceAdviceInstance.#ctor(System.Type,PostSharp.Aspects.Advices.InterfaceOverrideAction,PostSharp.Aspects.Advices.InterfaceOverrideAction)">
<summary>
Initializes a new instance of the <see cref="T:PostSharp.Aspects.Advices.IntroduceInterfaceAdviceInstance" /> class.
</summary>
<param name="interfaceType">Interface to introduce to the target class. Must be implemented by the aspect class itself.</param>
<param name="overrideAction">Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when the interface specified in the constructor of this custom attribute
is already implemented by the type to which the current aspect is applied.</param>
<param name="ancestorOverrideAction"> Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when an <i>ancestor</i> of the interface specified in the constructor of this custom attribute
is already implemented by the type to which the current aspect is applied.</param>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceInterfaceAdviceInstance.AncestorOverrideAction">
<summary>
Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when an <i>ancestor</i> of the interface specified in the constructor of this custom attribute
is already implemented by the type to which the current aspect is applied.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceInterfaceAdviceInstance.InterfaceType">
<summary>
Gets the interface to be introduced into the target class.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceInterfaceAdviceInstance.MasterAspectMember">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>P:PostSharp.Aspects.Advices.IntroduceInterfaceAdviceInstance.MasterAspectMember</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceInterfaceAdviceInstance.OverrideAction">
<summary>
Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when the interface specified in the constructor of this custom attribute
is already implemented by the type to which the current aspect is applied.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.IntroduceInterfaceAttribute">
<summary>
Custom attribute that, when applied to an aspect class, specifies that the aspect should
introduce a given interface into the type to which the aspect is applied.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.IntroduceInterfaceAttribute.#ctor(System.Type)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Advices.IntroduceInterfaceAttribute" />.
</summary>
<param name="interfaceType">Interface that should be introduced into the types
to which the aspect is applied.</param>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceInterfaceAttribute.AncestorOverrideAction">
<summary>
Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when an <i>ancestor</i> of the interface specified in the constructor of this custom attribute
is already implemented by the type to which the current aspect is applied.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceInterfaceAttribute.IsProtected">
<summary>
Determines whether the interface should be exposed indirectly through the
<see cref="T:PostSharp.Aspects.IProtectedInterface`1" /> interface. If <c>false</c>, the interface
will be implemented directly by the type.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceInterfaceAttribute.OverrideAction">
<summary>
Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when the interface specified in the constructor of this custom attribute
is already implemented by the type to which the current aspect is applied.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.IntroduceMemberAdviceInstance">
<summary>
Base class for <see cref="T:PostSharp.Aspects.Advices.IntroduceMethodAdviceInstance" />.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceMemberAdviceInstance.IsVirtual">
<summary>
Determines whether the introduced member should be virtual.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceMemberAdviceInstance.OverrideAction">
<summary>
Determines the action to be overtaken when the member to be introduced already exists
in the type to which the aspect is applied, or to a base type.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceMemberAdviceInstance.Visibility">
<summary>
Gets the visibility of the introduced member.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.IntroduceMemberAttribute">
<summary>
Custom attribute that, when applied on a method, event or property of an aspect class, specifies
that this method, event or property should be introduced into the types to which the aspect is applied.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.IntroduceMemberAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.IntroduceMemberAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceMemberAttribute.IsIsVirtualSpecified">
<summary>
Determines whether the <see cref="P:PostSharp.Aspects.Advices.IntroduceMemberAttribute.IsVirtual" /> property has been specified.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceMemberAttribute.IsVirtual">
<summary>
Determines whether the introduced member should be virtual.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceMemberAttribute.OverrideAction">
<summary>
Determines the action to be overtaken when the member to be introduced already exists
in the type to which the aspect is applied, or to a base type.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceMemberAttribute.Visibility">
<summary>
Determines the visibility (<see cref="F:PostSharp.Reflection.Visibility.Public" />, (<see cref="F:PostSharp.Reflection.Visibility.Family" />, ...)
of the introduced member.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.IntroduceMethodAdviceInstance">
<summary>
Represents an advice that introduces a method of the aspect class into the target class.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.IntroduceMethodAdviceInstance.#ctor(System.Reflection.MethodInfo,PostSharp.Reflection.Visibility,System.Nullable{System.Boolean},PostSharp.Aspects.Advices.MemberOverrideAction)">
<summary>
Initializes a new instance of the <see cref="T:PostSharp.Aspects.Advices.IntroduceMethodAdviceInstance" /> class.
</summary>
<param name="method">A public method of the aspect class.</param>
<param name="visibility">Visibility of the introduced method.</param>
<param name="isVirtual">
<c>true</c> if the introduced method should be virtual, <c>false</c> if it should be non-virtual (or sealed, if the method is overriding another one),
or <c>null</c> if the method should be virtual only if the overridden method is also virtual. See <see cref="P:PostSharp.Aspects.Advices.IntroduceMemberAdviceInstance.IsVirtual" /> for details.</param>
<param name="overrideAction">Determines the action to be overtaken when the member to be introduced already exists
in the type to which the aspect is applied, or to a base type.
</param>
</member>
<member name="P:PostSharp.Aspects.Advices.IntroduceMethodAdviceInstance.MasterAspectMember">
<summary>
Gets the main field or method of the aspect class that the current <see cref="T:PostSharp.Aspects.Advices.AdviceInstance" /> relates to.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.IProperty">
<summary>
A weakly-typed interface for the <seealso cref="T:PostSharp.Aspects.Advices.Property`1" /> class.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.IProperty.GetValue">
<summary>
Gets the property value.
</summary>
<returns>The property value.</returns>
</member>
<member name="M:PostSharp.Aspects.Advices.IProperty.SetValue(System.Object)">
<summary>
Sets the property value.
</summary>
<param name="value">The new property value.</param>
</member>
<member name="T:PostSharp.Aspects.Advices.LocationValidationAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies that this method
has the same semantic as the <see cref="M:PostSharp.Aspects.ILocationValidationAspect`1.ValidateValue(`0,System.String,PostSharp.Reflection.LocationKind)" /> method
of the <see cref="T:PostSharp.Aspects.ILocationValidationAspect`1" /> interface.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.LocationValidationAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.LocationValidationAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.MemberOverrideAction">
<summary>
Enumeration of actions to be overtaken by the <see cref="T:PostSharp.Aspects.Advices.IntroduceMemberAttribute" /> aspect extension
when the member to be introduced already exists in the aspect target type or its base type.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.MemberOverrideAction.Default">
<summary>
<see cref="F:PostSharp.Aspects.Advices.MemberOverrideAction.Fail" />
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.MemberOverrideAction.Fail">
<summary>
Emits a build time error.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.MemberOverrideAction.Ignore">
<summary>
Silently ignore the member introduction.
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.MemberOverrideAction.OverrideOrFail">
<summary>
Tries to override the member, and fails if it is impossible (i.e. if the existing member is defined
in a base type and is sealed or non-virtual).
</summary>
</member>
<member name="F:PostSharp.Aspects.Advices.MemberOverrideAction.OverrideOrIgnore">
<summary>
Tries to override the member, and silently ignore if it is impossible (i.e. if the existing member is defined
in a base type and is sealed or non-virtual).
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.MethodPointcut">
<summary>
Custom attribute that, when applied on an advice method, specifies the name of
the method that will be invoked at build-time to return the set of elements of code
to which the advice applies.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.MethodPointcut.#ctor(System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Advices.MethodPointcut" />.
</summary>
<param name="methodName">Name of the method returning the set of targets. This method should have
a specific signature as discussed in the <see cref="T:PostSharp.Aspects.Advices.MethodPointcut">class documentation</see>.</param>
</member>
<member name="P:PostSharp.Aspects.Advices.MethodPointcut.MethodName">
<summary>
Gets the name of the method returning the set of code elements.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.MulticastPointcut">
<summary>
Custom attribute that, when applied on an advice method, specifies to which elements of
code this advice applies, based on the kind, name and attributes of code elements.
Works similarly as <see cref="T:PostSharp.Extensibility.MulticastAttribute" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.MulticastPointcut.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.MulticastPointcut</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.MulticastPointcut.Attributes">
<summary>
Gets or sets the visibilities, scopes, virtualities, and implementation
of members to which this attribute applies.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.MulticastPointcut.MemberName">
<summary>
Gets or sets the expression specifying to which members
the aspect extension applies.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.MulticastPointcut.Targets">
<summary>
Gets or sets the kind of elements to which this aspect extension applies.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnAspectsInitializedAdvice">
<summary>
Custom attribute that, when applied to a method of an aspect class, specifies that this method
should be invoked after the instances of all the aspects applied on the same target has been initialized. The target method
must have a <c>void</c> return value and have a single parameter of type <see cref="T:PostSharp.Aspects.Advices.AspectInitializationReason" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnAspectsInitializedAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnAspectsInitializedAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnEventAddHandlerAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies
that this method is an advice having the same semantics as <see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnAddHandler(PostSharp.Aspects.EventInterceptionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnEventAddHandlerAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnEventAddHandlerAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnEventInvokeHandlerAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies
that this method is an advice having the same semantics as <see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnInvokeHandler(PostSharp.Aspects.EventInterceptionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnEventInvokeHandlerAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnEventInvokeHandlerAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnEventRemoveHandlerAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies that this method is an advice
having the same semantics as <see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnRemoveHandler(PostSharp.Aspects.EventInterceptionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnEventRemoveHandlerAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnEventRemoveHandlerAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnInstanceConstructedAdvice">
<summary>
Custom attribute that, when applied to a method of an aspect implementing <seealso cref="T:PostSharp.Aspects.IInstanceScopedAspect" />, specifies that this method should be executed
after the last instance constructor of the target class of the aspect has completed execution. That is, this method will be invoked when the target object
will be fully constructed. This custom attribute can be applied only on methods that have <c>void</c> return type and accepts no parameter.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnInstanceConstructedAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnInstanceConstructedAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnLocationGetValueAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies
that this method is an advice having the same semantics as <see cref="M:PostSharp.Aspects.ILocationInterceptionAspect.OnGetValue(PostSharp.Aspects.LocationInterceptionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnLocationGetValueAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnLocationGetValueAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnLocationSetValueAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies
that this method is an advice having the same semantics as <see cref="M:PostSharp.Aspects.ILocationInterceptionAspect.OnSetValue(PostSharp.Aspects.LocationInterceptionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnLocationSetValueAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnLocationSetValueAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnMethodBoundaryAdvice">
<summary>
Base class for <see cref="T:PostSharp.Aspects.Advices.OnMethodEntryAdvice" />, <see cref="T:PostSharp.Aspects.Advices.OnMethodExceptionAdvice" />,
<see cref="T:PostSharp.Aspects.Advices.OnMethodSuccessAdvice" /> or <see cref="T:PostSharp.Aspects.Advices.OnMethodExitAdvice" />.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.OnMethodBoundaryAdvice.ApplyToStateMachine">
<summary>
Determines how the advice should behave when it is applied to an iterator or
async methods, which are compiled into state machines.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnMethodEntryAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies
that this method is an advice having the same semantics as <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnEntry(PostSharp.Aspects.MethodExecutionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnMethodEntryAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnMethodEntryAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnMethodExceptionAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies
that this method is an advice having the same semantics as <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnException(PostSharp.Aspects.MethodExecutionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnMethodExceptionAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnMethodExceptionAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnMethodExitAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies
that this method is an advice having the same semantics as <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnExit(PostSharp.Aspects.MethodExecutionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnMethodExitAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnMethodExitAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnMethodInvokeAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies
that this method is an advice having the same semantics as <see cref="M:PostSharp.Aspects.IMethodInterceptionAspect.OnInvoke(PostSharp.Aspects.MethodInterceptionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnMethodInvokeAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnMethodInvokeAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnMethodResumeAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies
that this method is an advice having the same semantics as <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnResume(PostSharp.Aspects.MethodExecutionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnMethodResumeAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnMethodResumeAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnMethodSuccessAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies
that this method is an advice having the same semantics as <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnSuccess(PostSharp.Aspects.MethodExecutionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnMethodSuccessAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnMethodSuccessAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.OnMethodYieldAdvice">
<summary>
Custom attribute that, when applied on a method of an aspect class, specifies
that this method is an advice having the same semantics as <see cref="M:PostSharp.Aspects.OnMethodBoundaryAspect.OnYield(PostSharp.Aspects.MethodExecutionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.OnMethodYieldAdvice.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.OnMethodYieldAdvice</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.Pointcut">
<summary>
Custom attribute, typically accompanying an advice, specifying
to which code elements the advice applies.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.Pointcut.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.Pointcut</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.Property`1">
<summary>
Exposes the semantics of a parameterless property for use
with the <see cref="T:PostSharp.Aspects.Advices.ImportMemberAttribute" /> aspect extension.
</summary>
<typeparam name="TValue">Property value type.</typeparam>
</member>
<member name="P:PostSharp.Aspects.Advices.Property`1.Get">
<summary>
Gets a delegate enabling to invoke the <b>get</b> accessor
of the imported property.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.Property`1.Set">
<summary>
Gets a delegate enabling to invoke the <b>set</b> accessor
of the imported property.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.Property`2">
<summary>
Mimics the semantics of a property accepting a single index parameter, for use
with the <see cref="T:PostSharp.Aspects.Advices.ImportMemberAttribute" /> aspect extension.
</summary>
<typeparam name="TIndex">Property index type.</typeparam>
<typeparam name="TValue">Property value type.</typeparam>
</member>
<member name="P:PostSharp.Aspects.Advices.Property`2.Get">
<summary>
Gets a delegate enabling to invoke the <b>get</b> accessor
of the imported property.
</summary>
</member>
<member name="P:PostSharp.Aspects.Advices.Property`2.Set">
<summary>
Gets a delegate enabling to invoke the <b>set</b> accessor
of the imported property.
</summary>
</member>
<member name="T:PostSharp.Aspects.Advices.PropertyGetter`1">
<summary>
Defines the signature of methods implementing the <see cref="P:PostSharp.Aspects.Advices.Property`1.Get" />
semantic of a parameterless property.
</summary>
<typeparam name="TValue">Property value type.</typeparam>
<returns>The property value.</returns>
</member>
<member name="T:PostSharp.Aspects.Advices.PropertyGetter`2">
<summary>
Defines the signature of methods implementing the <see cref="P:PostSharp.Aspects.Advices.Property`2.Get" />
semantic of a property with a single index parameter.
</summary>
<param name="index">Index.</param>
<typeparam name="TValue">Property value type.</typeparam>
<typeparam name="TIndex">Property index type.</typeparam>
<returns>The property value.</returns>
</member>
<member name="T:PostSharp.Aspects.Advices.PropertySetter`1">
<summary>
Defines the signature of methods implementing the <see cref="P:PostSharp.Aspects.Advices.Property`1.Set" />
semantic of a parameterless property.
</summary>
<param name="value">The property value.</param>
<typeparam name="TValue">Property value type.</typeparam>
</member>
<member name="T:PostSharp.Aspects.Advices.PropertySetter`2">
<summary>
Defines the signature of methods implementing the <see cref="P:PostSharp.Aspects.Advices.Property`2.Set" />
semantic of a property with a single index parameter.
</summary>
<param name="index">Index.</param>
<param name="value">The property value.</param>
<typeparam name="TValue">Property value type.</typeparam>
<typeparam name="TIndex">Property index type.</typeparam>
</member>
<member name="T:PostSharp.Aspects.Advices.SelfPointcut">
<summary>
<see cref="T:PostSharp.Aspects.Advices.Pointcut" /> that selects exactly the aspect target.
</summary>
</member>
<member name="M:PostSharp.Aspects.Advices.SelfPointcut.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Advices.SelfPointcut</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.AspectConfiguration">
<summary>
Configuration of an <see cref="T:PostSharp.Aspects.IAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.AspectConfiguration.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.AspectConfiguration</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.AspectConfiguration.AspectPriority">
<summary>
Gets or sets the aspect priority. Aspects with smaller priority are processed first. The default priority is zero.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.AspectConfiguration.Dependencies">
<summary>
Gets or sets the collection of dependencies.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.AspectConfiguration.SerializerType">
<summary>
Gets or sets the type of the serializer that will be used
to configure the current aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.AspectConfigurationAttribute">
<summary>
Configures an aspect of type <see cref="T:PostSharp.Aspects.IAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.AspectConfigurationAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.AspectConfigurationAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.AspectConfigurationAttribute.AspectPriority">
<summary>
Gets or sets the weaving priority of the aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.AspectConfigurationAttribute.CreateAspectConfiguration">
<summary>
Creates a concrete <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance specifically for the current
<see cref="T:PostSharp.Aspects.Configuration.AspectConfigurationAttribute" /> type.
</summary>
<returns>A new and empty instance of <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />, whose concrete type corresponds to
the concrete type of the <see cref="T:PostSharp.Aspects.Configuration.AspectConfigurationAttribute" />.</returns>
</member>
<member name="M:PostSharp.Aspects.Configuration.AspectConfigurationAttribute.GetAspectConfiguration">
<summary>
Gets the <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> corresponding to the current custom attribute.
</summary>
<returns>An <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> corresponding to the current custom attribute.</returns>
</member>
<member name="P:PostSharp.Aspects.Configuration.AspectConfigurationAttribute.SerializerType">
<summary>
Gets or sets the <see cref="T:System.Type" /> of the serializer that will be used
to configure the current aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.AspectConfigurationAttribute.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration)">
<summary>
Sets up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current custom attribute instance.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Configuration.AspectConfigurationAttribute.CreateAspectConfiguration" /> method.</param>
</member>
<member name="T:PostSharp.Aspects.Configuration.AspectConfigurationAttributeTypeAttribute">
<summary>
Custom attribute that, when applied to an aspect, specifies which custom attribute type
(derived from <see cref="T:PostSharp.Aspects.Configuration.AspectConfigurationAttribute" />) can provide declarative configuration for the aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.AspectConfigurationAttributeTypeAttribute.#ctor(System.Type)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Configuration.AspectConfigurationAttribute" />.
</summary>
<param name="type">Custom attribute type
(derived from <see cref="T:PostSharp.Aspects.Configuration.AspectConfigurationAttribute" />).</param>
</member>
<member name="T:PostSharp.Aspects.Configuration.CompositionAspectConfiguration">
<summary>
Configuration of aspects of type <see cref="T:PostSharp.Aspects.ICompositionAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.CompositionAspectConfiguration</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.AncestorOverrideAction">
<summary>
Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when an <i>ancestor</i> of one of the interfaces specified by <see cref="P:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.PublicInterfaces" />
is already implemented by the type to which the current aspect is applied.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.GenerateImplementationAccessor">
<summary>
Determines whether the interface <see cref="T:PostSharp.Aspects.IComposed`1" /> should be introduced into the type to which the aspect
is applied for each interface specified by the <see cref="P:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.PublicInterfaces" /> property.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.NonSerializedImplementation">
<summary>
Determines whether the field containing the interface implementation (and storing the object returned by
<see cref="M:PostSharp.Aspects.ICompositionAspect.CreateImplementationObject(PostSharp.Aspects.AdviceArgs)" />) should be excluded from serialization by <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" />.
The same effect is typically obtained by applying the <see cref="T:System.NonSerializedAttribute" /> custom attribute to the field.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.OverrideAction">
<summary>
Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when one of the interfaces specified by <see cref="P:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.PublicInterfaces" /> or <see cref="P:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.ProtectedInterfaces" />
is already implemented by the type to which the aspect is applied.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.ProtectedInterfaces">
<summary>
Gets or sets the array of interfaces to be introduced indirectly into the target type of the aspect. These
interfaces will become accessible through the <see cref="T:PostSharp.Aspects.IProtectedInterface`1" /> interface.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CompositionAspectConfiguration.PublicInterfaces">
<summary>
Gets or sets the array of interfaces that should be introduced publicly into the target type of the aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute">
<summary>
Custom attribute that, when applied on a class implementing <see cref="T:PostSharp.Aspects.ICompositionAspect" />,
defines the declarative configuration of that aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute.AncestorOverrideAction">
<summary>
Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when an <i>ancestor</i> of one of the interfaces specified by <see cref="P:PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute.PublicInterfaces" />
is already implemented by the type to which the current aspect is applied.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute.GenerateImplementationAccessor">
<summary>
Determines whether the interface <see cref="T:PostSharp.Aspects.IComposed`1" /> should be introduced into the type to which the aspect
is applied for each interface specified by the <see cref="P:PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute.PublicInterfaces" /> property.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute.NonSerializedImplementation">
<summary>
Determines whether the field containing the interface implementation (and storing the object returned by
<see cref="M:PostSharp.Aspects.ICompositionAspect.CreateImplementationObject(PostSharp.Aspects.AdviceArgs)" />) should be excluded from serialization by <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" />.
The same effect is typically obtained by applying the <see cref="T:System.NonSerializedAttribute" /> custom attribute to the field.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute.OverrideAction">
<summary>
Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when one of the interfaces specified by <see cref="P:PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute.PublicInterfaces" /> or <see cref="P:PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute.ProtectedInterfaces" />
is already implemented by the type to which the aspect is applied.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute.ProtectedInterfaces">
<summary>
Gets or sets the array of type names of interfaces to be introduced indirectly into the target type of the aspect. These
interfaces will become accessible through the <see cref="T:PostSharp.Aspects.IProtectedInterface`1" /> interface.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CompositionAspectConfigurationAttribute.PublicInterfaces">
<summary>
Gets or sets the array of type names of interfaces that should be introduced publicly into
the target type of the aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.CustomAttributeIntroductionAspectConfiguration">
<summary>
Configuration of aspects of type <see cref="T:PostSharp.Aspects.CustomAttributeIntroductionAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.CustomAttributeIntroductionAspectConfiguration.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.CustomAttributeIntroductionAspectConfiguration</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.CustomAttributeIntroductionAspectConfiguration.ObjectConstruction">
<summary>
Gets or sets the construction of the custom attribute that must be applied to the target of this aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.EventInterceptionAspectConfiguration">
<summary>
Configuration of aspects of type <see cref="T:PostSharp.Aspects.IEventInterceptionAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.EventInterceptionAspectConfiguration.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.EventInterceptionAspectConfiguration</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.EventInterceptionAspectConfigurationAttribute">
<summary>
Custom attribute that, when applied on a class implementing <see cref="T:PostSharp.Aspects.IEventInterceptionAspect" />,
defines the declarative configuration of that aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.EventInterceptionAspectConfigurationAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.EventInterceptionAspectConfigurationAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.IProfileAwareConfiguration">
<summary>
Allows an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> to depend on a <i>profile</i>, i.e.
an external piece of configuration stored as a resource in the project file.
Classes derived from <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> may implement this interface.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.IProfileAwareConfiguration.ApplyProfile(System.Object)">
<summary>
Applies the profile to the current configuration object.
</summary>
<param name="profile">The profile object, represented by the resource named <see cref="P:PostSharp.Aspects.Configuration.IProfileAwareConfiguration.ProfileName" />
in section named <see cref="P:PostSharp.Aspects.Configuration.IProfileAwareConfiguration.ProfileSectionName" />, with namespace <see cref="P:PostSharp.Aspects.Configuration.IProfileAwareConfiguration.ProfileSectionNamespace" />.
</param>
</member>
<member name="P:PostSharp.Aspects.Configuration.IProfileAwareConfiguration.ProfileName">
<summary>
Gets the name of the profile, i.e. the name of the resource representing the profile.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.IProfileAwareConfiguration.ProfileSectionName">
<summary>
Gets the name of the project section in which the profile resource is stored.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.IProfileAwareConfiguration.ProfileSectionNamespace">
<summary>
Gets the namespace of the project section in which the profile resource is stored.
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.LocationInterceptionAspectConfiguration">
<summary>
Configuration of aspects of type <see cref="T:PostSharp.Aspects.ILocationLevelAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.LocationInterceptionAspectConfiguration.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.LocationInterceptionAspectConfiguration</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.LocationInterceptionAspectConfigurationAttribute">
<summary>
Custom attribute that, when applied on a class implementing <see cref="T:PostSharp.Aspects.ILocationInterceptionAspect" />,
defines the declarative configuration of that aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.LocationInterceptionAspectConfigurationAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.LocationInterceptionAspectConfigurationAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.ManagedResourceIntroductionAspectConfiguration">
<summary>
Configuration of aspects of type <see cref="T:PostSharp.Aspects.ManagedResourceIntroductionAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.ManagedResourceIntroductionAspectConfiguration.#ctor(System.String,System.Byte[])">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Configuration.ManagedResourceIntroductionAspectConfiguration" />.
</summary>
<param name="name">Name of the managed resource.</param>
<param name="data">Content of the managed resource.</param>
</member>
<member name="P:PostSharp.Aspects.Configuration.ManagedResourceIntroductionAspectConfiguration.Data">
<summary>
Gets the content of the managed resource.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.ManagedResourceIntroductionAspectConfiguration.Name">
<summary>
Gets the name of the managed resource.
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.MethodInterceptionAspectConfiguration">
<summary>
Configuration of aspects of type <see cref="T:PostSharp.Aspects.IMethodInterceptionAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.MethodInterceptionAspectConfiguration.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.MethodInterceptionAspectConfiguration</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.MethodInterceptionAspectConfigurationAttribute">
<summary>
Custom attribute that, when applied on a class implementing <see cref="T:PostSharp.Aspects.IMethodInterceptionAspect" />,
defines the declarative configuration of that aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.MethodInterceptionAspectConfigurationAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.MethodInterceptionAspectConfigurationAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.OnExceptionAspectConfiguration">
<summary>
Configuration of the <see cref="T:PostSharp.Aspects.IOnExceptionAspect" /> aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.OnExceptionAspectConfiguration.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.OnExceptionAspectConfiguration</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.OnExceptionAspectConfiguration.ApplyToStateMachine">
<summary>
Determines how the aspect should behave when it is applied to an iterator or
async methods, which are compiled into state machines.
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.OnExceptionAspectConfiguration.ExceptionType">
<summary>
Gets or sets the type of exceptions that are caught by this aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.OnExceptionAspectConfigurationAttribute">
<summary>
Custom attribute that, when applied on a class implementing <see cref="T:PostSharp.Aspects.IOnExceptionAspect" />,
defines the configuration of that aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.OnExceptionAspectConfigurationAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.OnExceptionAspectConfigurationAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.OnExceptionAspectConfigurationAttribute.ExceptionType">
<summary>
Gets or sets the type of exceptions that are caught by this aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.OnMethodBoundaryAspectConfiguration">
<summary>
Configuration of the <see cref="T:PostSharp.Aspects.IOnMethodBoundaryAspect" /> aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.OnMethodBoundaryAspectConfiguration.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.OnMethodBoundaryAspectConfiguration</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Configuration.OnMethodBoundaryAspectConfiguration.ApplyToStateMachine">
<summary>
Determines how the aspect should behave when it is applied to an iterator or
async methods, which are compiled into state machines.
</summary>
</member>
<member name="T:PostSharp.Aspects.Configuration.OnMethodBoundaryAspectConfigurationAttribute">
<summary>
Custom attribute that, when applied on a class implementing <see cref="T:PostSharp.Aspects.IOnMethodBoundaryAspect" />,
defines the configuration of that aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Configuration.OnMethodBoundaryAspectConfigurationAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Configuration.OnMethodBoundaryAspectConfigurationAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.AdviceDependencyAttribute">
<summary>
Specifies an aspect dependency matching an advice of the same aspect instance.
</summary>
</member>
<member name="M:PostSharp.Aspects.Dependencies.AdviceDependencyAttribute.#ctor(PostSharp.Aspects.Dependencies.AspectDependencyAction,PostSharp.Aspects.Dependencies.AspectDependencyPosition,System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.AdviceDependencyAttribute" /> and specifies a position.
</summary>
<param name="action">Dependency action.</param>
<param name="position">Dependency position.</param>
<param name="adviceMethodName">Name of the advice method.</param>
</member>
<member name="M:PostSharp.Aspects.Dependencies.AdviceDependencyAttribute.#ctor(PostSharp.Aspects.Dependencies.AspectDependencyAction,System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.AdviceDependencyAttribute" /> without specifying the position,
implicitly set to <see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyPosition.Any" />.
</summary>
<param name="action">Dependency action.</param>
<param name="adviceMethodName">Name of the advice method.</param>
</member>
<member name="P:PostSharp.Aspects.Dependencies.AdviceDependencyAttribute.AdviceMethodName">
<summary>
Gets the name of the method implementing the advice.
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.AspectDependencyAction">
<summary>
Enumeration of the different kinds of relationships of specified by aspect dependencies.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.AspectDependencyAction.None">
<summary>
The dependency is ignored.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.AspectDependencyAction.Order">
<summary>
The dependency specifies an order relationship.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.AspectDependencyAction.Require">
<summary>
The dependency specifies that the current aspect or advice requires
another aspect or advice.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.AspectDependencyAction.Conflict">
<summary>
The dependency specifies that the current aspect or advice
conflicts with another aspect or advice.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.AspectDependencyAction.Commute">
<summary>
The dependency specifies that the current aspect or advice
commutes with another aspect or advice.
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.AspectDependencyAttribute">
<summary>
Base class for all custom attributes defining aspect dependencies. An aspect dependency determines the
behavior of aspects or advices when used in conjunction with other aspects and advices.
Aspect dependencies determine ordering, requirements, conflicts, and commutativity of aspects and advices.
</summary>
</member>
<member name="M:PostSharp.Aspects.Dependencies.AspectDependencyAttribute.#ctor(PostSharp.Aspects.Dependencies.AspectDependencyAction)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.AspectDependencyAttribute" /> without specifying the position,
implicitly set to <see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyPosition.Any" />.
</summary>
<param name="action">Dependency action.</param>
</member>
<member name="M:PostSharp.Aspects.Dependencies.AspectDependencyAttribute.#ctor(PostSharp.Aspects.Dependencies.AspectDependencyAction,PostSharp.Aspects.Dependencies.AspectDependencyPosition)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.AspectDependencyAttribute" /> and specifies a position.
</summary>
<param name="action">Dependency action.</param>
<param name="position">Dependency position.</param>
</member>
<member name="P:PostSharp.Aspects.Dependencies.AspectDependencyAttribute.Action">
<summary>
Gets the dependency action, i.e. the kind of relationship specified by the dependency
(<see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyAction.Order" />, <see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyAction.Require" />,
<see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyAction.Conflict" />, or <see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyAction.Commute" />).
</summary>
</member>
<member name="P:PostSharp.Aspects.Dependencies.AspectDependencyAttribute.IsWarning">
<summary>
If <c>true</c>, specifies that the constraint (of type <see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyAction.Require" />
or <see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyAction.Conflict" />) should emit a warning instead of an error if not
respected.
</summary>
</member>
<member name="P:PostSharp.Aspects.Dependencies.AspectDependencyAttribute.Position">
<summary>
Gets the position of the current dependency, i.e. actually the position of the <i>other</i>
aspect or advices with respect to the one related to this dependency.
</summary>
</member>
<member name="P:PostSharp.Aspects.Dependencies.AspectDependencyAttribute.Target">
<summary>
Determines the target (<see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyTarget.Default" /> or <see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyTarget.Type" />)
to which the aspect dependency apply.
</summary>
</member>
<member name="P:PostSharp.Aspects.Dependencies.AspectDependencyAttribute.TargetType">
<summary>
Aspect type to which this dependency applies. This property is required when the
custom attribute is applied at assembly level. It is ignored when applied on
class or method level.
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.AspectDependencyAttributeCollection">
<summary>
Collection of <see cref="T:PostSharp.Aspects.Dependencies.AspectDependencyAttribute" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Dependencies.AspectDependencyAttributeCollection.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Dependencies.AspectDependencyAttributeCollection</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.AspectDependencyPosition">
<summary>
Enumeration of the direction of the relationship specified by an aspect dependency.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.AspectDependencyPosition.Any">
<summary>
Any order possible (or order not relevant).
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.AspectDependencyPosition.Before">
<summary>
The current aspect or advice is positioned before the other aspect or handler.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.AspectDependencyPosition.After">
<summary>
The current aspect or advice is positioned after the other aspect or handler.
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.AspectDependencyTarget">
<summary>
Enumeration of targets (<see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyTarget.Default" /> or <see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyTarget.Type" />)
to which the aspect dependency apply.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.AspectDependencyTarget.Default">
<summary>
Natural target of the aspect.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.AspectDependencyTarget.Type">
<summary>
Declaring type of the natural target of the aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.AspectEffectDependencyAttribute">
<summary>
Specifies an aspect dependency matching aspects or advices having a given effect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Dependencies.AspectEffectDependencyAttribute.#ctor(PostSharp.Aspects.Dependencies.AspectDependencyAction,PostSharp.Aspects.Dependencies.AspectDependencyPosition,System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.AspectEffectDependencyAttribute" /> and specifies a position.
</summary>
<param name="action">Dependency action.</param>
<param name="position">Dependency position.</param>
<param name="effect">Effect (see <see cref="T:PostSharp.Aspects.Dependencies.StandardEffects" />).</param>
</member>
<member name="M:PostSharp.Aspects.Dependencies.AspectEffectDependencyAttribute.#ctor(PostSharp.Aspects.Dependencies.AspectDependencyAction,System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.AspectEffectDependencyAttribute" /> without specifying the position,
implicitly set to <see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyPosition.Any" />.
</summary>
<param name="action">Dependency action.</param>
<param name="effect">Effect (see <see cref="T:PostSharp.Aspects.Dependencies.StandardEffects" />).</param>
</member>
<member name="P:PostSharp.Aspects.Dependencies.AspectEffectDependencyAttribute.Effect">
<summary>
Gets the effect that the aspects or advices must have in order to match the current dependency.
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.AspectRoleDependencyAttribute">
<summary>
Specifies an aspect dependency matching aspects or advices that are a part of a given role.
</summary>
</member>
<member name="M:PostSharp.Aspects.Dependencies.AspectRoleDependencyAttribute.#ctor(PostSharp.Aspects.Dependencies.AspectDependencyAction,PostSharp.Aspects.Dependencies.AspectDependencyPosition,System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.AspectRoleDependencyAttribute" /> and specifies a position.
</summary>
<param name="action">Dependency action.</param>
<param name="position">Dependency position.</param>
<param name="role">Role.</param>
</member>
<member name="M:PostSharp.Aspects.Dependencies.AspectRoleDependencyAttribute.#ctor(PostSharp.Aspects.Dependencies.AspectDependencyAction,System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.AspectEffectDependencyAttribute" /> without specifying the position,
implicitly set to <see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyPosition.Any" />.
</summary>
<param name="action">Dependency action.</param>
<param name="role">Role.</param>
</member>
<member name="P:PostSharp.Aspects.Dependencies.AspectRoleDependencyAttribute.Role">
<summary>
Gets the role that the aspects or advices must be a part of in order to match the current dependency.
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.AspectTypeDependencyAttribute">
<summary>
Specifies an aspect dependency matching aspects of a specified type, and all its advices.
</summary>
</member>
<member name="M:PostSharp.Aspects.Dependencies.AspectTypeDependencyAttribute.#ctor(PostSharp.Aspects.Dependencies.AspectDependencyAction,PostSharp.Aspects.Dependencies.AspectDependencyPosition,System.Type)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.AspectTypeDependencyAttribute" /> and specifies a position.
</summary>
<param name="action">Dependency action.</param>
<param name="position">Dependency position.</param>
<param name="aspectType">Aspect type (derived from <see cref="T:PostSharp.Aspects.IAspect" />).</param>
</member>
<member name="M:PostSharp.Aspects.Dependencies.AspectTypeDependencyAttribute.#ctor(PostSharp.Aspects.Dependencies.AspectDependencyAction,System.Type)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.AspectTypeDependencyAttribute" /> without specifying the position,
implicitly set to <see cref="F:PostSharp.Aspects.Dependencies.AspectDependencyPosition.Any" />.
</summary>
<param name="action">Dependency action.</param>
<param name="aspectType">Aspect type (derived from <see cref="T:PostSharp.Aspects.IAspect" />).</param>
</member>
<member name="P:PostSharp.Aspects.Dependencies.AspectTypeDependencyAttribute.AspectType">
<summary>
Gets the type from which the aspects should be derived in order to match the current dependency.
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.ProvideAspectRoleAttribute">
<summary>
Specifies that the aspect or aspect advice to which this custom attribute is applied is a
part of a given role. This aspect or advice can then be matched by <see cref="T:PostSharp.Aspects.Dependencies.AspectRoleDependencyAttribute" />/
</summary>
</member>
<member name="M:PostSharp.Aspects.Dependencies.ProvideAspectRoleAttribute.#ctor(System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.ProvideAspectRoleAttribute" />.
</summary>
<param name="role">Role.</param>
</member>
<member name="P:PostSharp.Aspects.Dependencies.ProvideAspectRoleAttribute.Role">
<summary>
Gets the role into which the aspect or advice to which this custom
attribute is applied will be enrolled.
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.StandardEffects">
<summary>
List of standard effects.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardEffects.ChangeControlFlow">
<summary>
Change the flow control (for instance by having the possibility to skip execution of an
intercepted method).
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardEffects.Custom">
<summary>
Custom effect (implemented in an aspect advice). All advices have this effect by default,
unless they are annotated by <see cref="T:PostSharp.Aspects.Dependencies.WaiveAspectEffectAttribute" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardEffects.CustomAttributeIntroduction">
<summary>
Introduction of a custom attribute.
</summary>
</member>
<member name="M:PostSharp.Aspects.Dependencies.StandardEffects.GetInterfaceIntroductionEffect(System.String)">
<summary>
Gets a string representing the effect of introducing an interface into a type.
</summary>
<param name="typeName">Name of the introduced interface.</param>
<returns>A string that, by convention, represents the introduction of an interface named
<paramref name="typeName" /> into a type.</returns>
</member>
<member name="M:PostSharp.Aspects.Dependencies.StandardEffects.GetMemberImportEffect(System.String)">
<summary>
Gets a string representing the effect of importing a member into from the target
type into the aspect.
</summary>
<param name="memberName">Name of the imported member.</param>
<returns>A string that, by convention, represents the import of a member named
<paramref name="memberName" /> from the target type into the aspect.</returns>
</member>
<member name="M:PostSharp.Aspects.Dependencies.StandardEffects.GetMemberIntroductionEffect(System.String)">
<summary>
Gets a string representing the effect of introducing a member into a type.
</summary>
<param name="memberName">Name of the introduced member.</param>
<returns>A string that, by convention, represents the introduction of a member named
<paramref name="memberName" /> into a type.</returns>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardEffects.InterfaceIntroduction">
<summary>
Introduction of an interface.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardEffects.MemberImport">
<summary>
Import of a type member.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardEffects.MemberIntroduction">
<summary>
Introduction of a type member.
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.StandardRoles">
<summary>
List of standard roles.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardRoles.Caching">
<summary>
Caching.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardRoles.DataBinding">
<summary>
Data binding (for instance implementation of <see cref="T:System.ComponentModel.INotifyPropertyChanged" />).
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardRoles.EventBroker">
<summary>
Event broker (a system role used internally by <c>PostSharp</c> to realize
the <see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnInvokeHandler(PostSharp.Aspects.EventInterceptionArgs)" /> handler).
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardRoles.ExceptionHandling">
<summary>
Exception handling.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardRoles.PerformanceInstrumentation">
<summary>
Performance instrumentation (for instance performance counters).
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardRoles.Persistence">
<summary>
Object persistence (for instance Object-Relational Mapper).
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardRoles.Security">
<summary>
Security enforcing (typically authorization).
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardRoles.Threading">
<summary>
Threading (locking).
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardRoles.Tracing">
<summary>
Tracing and logging.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardRoles.TransactionHandling">
<summary>
Transaction handling.
</summary>
</member>
<member name="F:PostSharp.Aspects.Dependencies.StandardRoles.Validation">
<summary>
Validation of field, property, or parameter value.
</summary>
</member>
<member name="T:PostSharp.Aspects.Dependencies.WaiveAspectEffectAttribute">
<summary>
Declares that the aspect class or advice to which this custom attribute is applied
is exempt of a given effect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Dependencies.WaiveAspectEffectAttribute.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.WaiveAspectEffectAttribute" /> declaring that
the aspect class or advice to which this custom attribute is applied has
no effect at all.
</summary>
</member>
<member name="M:PostSharp.Aspects.Dependencies.WaiveAspectEffectAttribute.#ctor(System.String[])">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Dependencies.WaiveAspectEffectAttribute" /> declaring that
the aspect class or advice to which this custom attribute is applied is
exempt of the specified effects.
</summary>
<param name="effects">List of effects of which the aspect class or advice
to which this custom attribute is applied is guaranteed to be exempt.</param>
</member>
<member name="T:PostSharp.Aspects.Internals.Arguments`1">
<summary>
Implementation of <see cref="T:PostSharp.Aspects.Arguments" /> representing a list of 1 argument.
</summary>
<typeparam name="TArg0">Type of the first argument.</typeparam>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`1.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Internals.Arguments`1" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`1.Arg0">
<summary>
First Argument.
</summary>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`1.CopyFrom(System.Object[],System.Int32)">
<summary>
Copies all the argument values from the elements of <see cref="T:System.Array" />.
</summary>
<param name="array">The array that is the source of the argument values copied into the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <c>null</c>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`1.CopyTo(System.Object[],System.Int32)">
<summary>
Copies all arguments values to the specified <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.
</summary>
<param name="array">The array that is the destination of argument values copied from the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="arrayIndex" /> is less than 0.</exception>
<exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`1.GetArgument(System.Int32)">
<summary>
Gets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<returns>The value of the argument at position <paramref name="index" />.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`1.SetArgument(System.Int32,System.Object)">
<summary>
Sets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<param name="value">New value of the argument at position <paramref name="index" />.</param>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> is not assignable to parameter
at position <paramref name="index" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="T:PostSharp.Aspects.Internals.Arguments`2">
<summary>
Implementation of <see cref="T:PostSharp.Aspects.Arguments" /> representing a list of 2 arguments.
</summary>
<typeparam name="TArg0">Type of the first argument.</typeparam>
<typeparam name="TArg1">Type of the second argument.</typeparam>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`2.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Internals.Arguments`2" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`2.Arg0">
<summary>
First argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`2.Arg1">
<summary>
Second argument.
</summary>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`2.CopyFrom(System.Object[],System.Int32)">
<summary>
Copies all the argument values from the elements of <see cref="T:System.Array" />.
</summary>
<param name="array">The array that is the source of the argument values copied into the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <c>null</c>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`2.CopyTo(System.Object[],System.Int32)">
<summary>
Copies all arguments values to the specified <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.
</summary>
<param name="array">The array that is the destination of argument values copied from the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="arrayIndex" /> is less than 0.</exception>
<exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`2.GetArgument(System.Int32)">
<summary>
Gets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<returns>The value of the argument at position <paramref name="index" />.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`2.SetArgument(System.Int32,System.Object)">
<summary>
Sets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<param name="value">New value of the argument at position <paramref name="index" />.</param>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> is not assignable to parameter
at position <paramref name="index" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="T:PostSharp.Aspects.Internals.Arguments`3">
<summary>
Implementation of <see cref="T:PostSharp.Aspects.Arguments" /> representing a list of 3 arguments.
</summary>
<typeparam name="TArg0">Type of the first argument.</typeparam>
<typeparam name="TArg1">Type of the second argument.</typeparam>
<typeparam name="TArg2">Type of the third argument.</typeparam>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`3.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Internals.Arguments`3" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`3.Arg0">
<summary>
First argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`3.Arg1">
<summary>
Second argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`3.Arg2">
<summary>
Third argument.
</summary>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`3.CopyFrom(System.Object[],System.Int32)">
<summary>
Copies all the argument values from the elements of <see cref="T:System.Array" />.
</summary>
<param name="array">The array that is the source of the argument values copied into the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <c>null</c>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`3.CopyTo(System.Object[],System.Int32)">
<summary>
Copies all arguments values to the specified <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.
</summary>
<param name="array">The array that is the destination of argument values copied from the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="arrayIndex" /> is less than 0.</exception>
<exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`3.GetArgument(System.Int32)">
<summary>
Gets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<returns>The value of the argument at position <paramref name="index" />.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`3.SetArgument(System.Int32,System.Object)">
<summary>
Sets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<param name="value">New value of the argument at position <paramref name="index" />.</param>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> is not assignable to parameter
at position <paramref name="index" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="T:PostSharp.Aspects.Internals.Arguments`4">
<summary>
Implementation of <see cref="T:PostSharp.Aspects.Arguments" /> representing a list of 4 arguments.
</summary>
<typeparam name="TArg0">Type of the first argument.</typeparam>
<typeparam name="TArg1">Type of the second argument.</typeparam>
<typeparam name="TArg2">Type of the third argument.</typeparam>
<typeparam name="TArg3">Type of the fourth argument.</typeparam>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`4.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Internals.Arguments`4" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`4.Arg0">
<summary>
First argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`4.Arg1">
<summary>
Second argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`4.Arg2">
<summary>
Third argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`4.Arg3">
<summary>
Fourth argument.
</summary>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`4.CopyFrom(System.Object[],System.Int32)">
<summary>
Copies all the argument values from the elements of <see cref="T:System.Array" />.
</summary>
<param name="array">The array that is the source of the argument values copied into the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <c>null</c>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`4.CopyTo(System.Object[],System.Int32)">
<summary>
Copies all arguments values to the specified <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.
</summary>
<param name="array">The array that is the destination of argument values copied from the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="arrayIndex" /> is less than 0.</exception>
<exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`4.GetArgument(System.Int32)">
<summary>
Gets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<returns>The value of the argument at position <paramref name="index" />.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`4.SetArgument(System.Int32,System.Object)">
<summary>
Sets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<param name="value">New value of the argument at position <paramref name="index" />.</param>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> is not assignable to parameter
at position <paramref name="index" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="T:PostSharp.Aspects.Internals.Arguments`5">
<summary>
Implementation of <see cref="T:PostSharp.Aspects.Arguments" /> representing a list of 5 arguments.
</summary>
<typeparam name="TArg0">Type of the first argument.</typeparam>
<typeparam name="TArg1">Type of the second argument.</typeparam>
<typeparam name="TArg2">Type of the third argument.</typeparam>
<typeparam name="TArg3">Type of the fourth argument.</typeparam>
<typeparam name="TArg4">Type of the fifth argument.</typeparam>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`5.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Internals.Arguments`5" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`5.Arg0">
<summary>
First argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`5.Arg1">
<summary>
Second argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`5.Arg2">
<summary>
Third argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`5.Arg3">
<summary>
Fourth argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`5.Arg4">
<summary>
Fifth argument.
</summary>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`5.CopyFrom(System.Object[],System.Int32)">
<summary>
Copies all the argument values from the elements of <see cref="T:System.Array" />.
</summary>
<param name="array">The array that is the source of the argument values copied into the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <c>null</c>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`5.CopyTo(System.Object[],System.Int32)">
<summary>
Copies all arguments values to the specified <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.
</summary>
<param name="array">The array that is the destination of argument values copied from the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="arrayIndex" /> is less than 0.</exception>
<exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`5.GetArgument(System.Int32)">
<summary>
Gets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<returns>The value of the argument at position <paramref name="index" />.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`5.SetArgument(System.Int32,System.Object)">
<summary>
Sets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<param name="value">New value of the argument at position <paramref name="index" />.</param>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> is not assignable to parameter
at position <paramref name="index" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="T:PostSharp.Aspects.Internals.Arguments`6">
<summary>
Implementation of <see cref="T:PostSharp.Aspects.Arguments" /> representing a list of 6 arguments.
</summary>
<typeparam name="TArg0">Type of the first argument.</typeparam>
<typeparam name="TArg1">Type of the second argument.</typeparam>
<typeparam name="TArg2">Type of the third argument.</typeparam>
<typeparam name="TArg3">Type of the fourth argument.</typeparam>
<typeparam name="TArg4">Type of the fifth argument.</typeparam>
<typeparam name="TArg5">Type of the sixth argument.</typeparam>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`6.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Internals.Arguments`6" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`6.Arg0">
<summary>
First argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`6.Arg1">
<summary>
Second argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`6.Arg2">
<summary>
Third argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`6.Arg3">
<summary>
Fourth argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`6.Arg4">
<summary>
Fifth argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`6.Arg5">
<summary>
Sixth argument.
</summary>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`6.CopyFrom(System.Object[],System.Int32)">
<summary>
Copies all the argument values from the elements of <see cref="T:System.Array" />.
</summary>
<param name="array">The array that is the source of the argument values copied into the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <c>null</c>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`6.CopyTo(System.Object[],System.Int32)">
<summary>
Copies all arguments values to the specified <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.
</summary>
<param name="array">The array that is the destination of argument values copied from the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="arrayIndex" /> is less than 0.</exception>
<exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`6.GetArgument(System.Int32)">
<summary>
Gets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<returns>The value of the argument at position <paramref name="index" />.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`6.SetArgument(System.Int32,System.Object)">
<summary>
Sets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<param name="value">New value of the argument at position <paramref name="index" />.</param>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> is not assignable to parameter
at position <paramref name="index" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="T:PostSharp.Aspects.Internals.Arguments`7">
<summary>
Implementation of <see cref="T:PostSharp.Aspects.Arguments" /> representing a list of 7 arguments.
</summary>
<typeparam name="TArg0">Type of the first argument.</typeparam>
<typeparam name="TArg1">Type of the second argument.</typeparam>
<typeparam name="TArg2">Type of the third argument.</typeparam>
<typeparam name="TArg3">Type of the fourth argument.</typeparam>
<typeparam name="TArg4">Type of the fifth argument.</typeparam>
<typeparam name="TArg5">Type of the sixth argument.</typeparam>
<typeparam name="TArg6">Type of the seventh argument.</typeparam>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`7.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Internals.Arguments`7" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`7.Arg0">
<summary>
First argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`7.Arg1">
<summary>
Second argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`7.Arg2">
<summary>
Third argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`7.Arg3">
<summary>
Fourth argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`7.Arg4">
<summary>
Fifth argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`7.Arg5">
<summary>
Sixth argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`7.Arg6">
<summary>
Seventh argument.
</summary>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`7.CopyFrom(System.Object[],System.Int32)">
<summary>
Copies all the argument values from the elements of <see cref="T:System.Array" />.
</summary>
<param name="array">The array that is the source of the argument values copied into the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <c>null</c>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`7.CopyTo(System.Object[],System.Int32)">
<summary>
Copies all arguments values to the specified <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.
</summary>
<param name="array">The array that is the destination of argument values copied from the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="arrayIndex" /> is less than 0.</exception>
<exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`7.GetArgument(System.Int32)">
<summary>
Gets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<returns>The value of the argument at position <paramref name="index" />.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`7.SetArgument(System.Int32,System.Object)">
<summary>
Sets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<param name="value">New value of the argument at position <paramref name="index" />.</param>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> is not assignable to parameter
at position <paramref name="index" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="T:PostSharp.Aspects.Internals.Arguments`8">
<summary>
Implementation of <see cref="T:PostSharp.Aspects.Arguments" /> representing a list of 8 arguments.
</summary>
<typeparam name="TArg0">Type of the first argument.</typeparam>
<typeparam name="TArg1">Type of the second argument.</typeparam>
<typeparam name="TArg2">Type of the third argument.</typeparam>
<typeparam name="TArg3">Type of the fourth argument.</typeparam>
<typeparam name="TArg4">Type of the fifth argument.</typeparam>
<typeparam name="TArg5">Type of the sixth argument.</typeparam>
<typeparam name="TArg6">Type of the seventh argument.</typeparam>
<typeparam name="TArg7">Type of the eighth argument.</typeparam>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`8.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Internals.Arguments`8" />.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`8.Arg0">
<summary>
First argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`8.Arg1">
<summary>
Second argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`8.Arg2">
<summary>
Third argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`8.Arg3">
<summary>
Fourth argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`8.Arg4">
<summary>
Fifth argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`8.Arg5">
<summary>
Sixth argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`8.Arg6">
<summary>
Seventh argument.
</summary>
</member>
<member name="F:PostSharp.Aspects.Internals.Arguments`8.Arg7">
<summary>
Eighth argument.
</summary>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`8.CopyFrom(System.Object[],System.Int32)">
<summary>
Copies all the argument values from the elements of <see cref="T:System.Array" />.
</summary>
<param name="array">The array that is the source of the argument values copied into the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <c>null</c>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`8.CopyTo(System.Object[],System.Int32)">
<summary>
Copies all arguments values to the specified <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.
</summary>
<param name="array">The array that is the destination of argument values copied from the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="arrayIndex" /> is less than 0.</exception>
<exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`8.GetArgument(System.Int32)">
<summary>
Gets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<returns>The value of the argument at position <paramref name="index" />.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.Arguments`8.SetArgument(System.Int32,System.Object)">
<summary>
Sets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<param name="value">New value of the argument at position <paramref name="index" />.</param>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> is not assignable to parameter
at position <paramref name="index" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="T:PostSharp.Aspects.Internals.ArgumentsArray">
<summary>
Implementation of <see cref="T:PostSharp.Aspects.Arguments" /> representing a
list of arguments of arbitrary length and type.
</summary>
</member>
<member name="M:PostSharp.Aspects.Internals.ArgumentsArray.#ctor(System.Object[])">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.Internals.ArgumentsArray" />.
</summary>
<param name="arguments">
<see cref="T:System.Array" /> containing the argument values.</param>
</member>
<member name="P:PostSharp.Aspects.Internals.ArgumentsArray.Arguments">
<summary>
Gets or sets the underlying array of arguments.
</summary>
</member>
<member name="M:PostSharp.Aspects.Internals.ArgumentsArray.CopyFrom(System.Object[],System.Int32)">
<summary>
Copies all the argument values from the elements of <see cref="T:System.Array" />.
</summary>
<param name="array">The array that is the source of the argument values copied into the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <c>null</c>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.ArgumentsArray.CopyTo(System.Object[],System.Int32)">
<summary>
Copies all arguments values to the specified <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.
</summary>
<param name="array">The array that is the destination of argument values copied from the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="arrayIndex" /> is less than 0.</exception>
<exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.ArgumentsArray.GetArgument(System.Int32)">
<summary>
Gets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<returns>The value of the argument at position <paramref name="index" />.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Internals.ArgumentsArray.SetArgument(System.Int32,System.Object)">
<summary>
Sets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<param name="value">New value of the argument at position <paramref name="index" />.</param>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> is not assignable to parameter
at position <paramref name="index" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="T:PostSharp.Aspects.Serialization.AspectSerializer">
<summary>
Base class for Laos serializers, whose role is to serialize aspect instances at compile-time and
deserialize them at runtime.
</summary>
</member>
<member name="M:PostSharp.Aspects.Serialization.AspectSerializer.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Serialization.AspectSerializer</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.Serialization.AspectSerializer.Deserialize(System.IO.Stream,PostSharp.Reflection.IMetadataDispenser)">
<summary>
Deserializes a stream into an array if aspects.
</summary>
<param name="stream">Stream containing serialized aspects.</param>
<param name="metadataDispenser">Metadata dispenser to be used to resolve serialized metadata references in <paramref name="stream" />.</param>
<returns>An array of aspects.</returns>
</member>
<member name="M:PostSharp.Aspects.Serialization.AspectSerializer.Deserialize(System.Reflection.Assembly,System.String,PostSharp.Reflection.IMetadataDispenser)">
<summary>
Deserializes aspects contained in a managed resource of an assembly.
</summary>
<param name="assembly">Assembly containing the serialized aspects.</param>
<param name="resourceName">Name of the managed resources into which aspects have been serialized.</param>
<param name="metadataDispenser">Metadata dispenser to be used to resolve serialized metadata references in this resource.</param>
<returns>An array of aspects.</returns>
</member>
<member name="M:PostSharp.Aspects.Serialization.AspectSerializer.Serialize(PostSharp.Aspects.IAspect[],System.IO.Stream,PostSharp.Reflection.IMetadataEmitter)">
<summary>
Serializes an array of aspects into a stream.
</summary>
<param name="aspects">Array of aspects to be serialized.</param>
<param name="stream">Stream into which aspects have to be serialized.</param>
<param name="metadataEmitter">A metadata emitter for the current module.</param>
</member>
<member name="T:PostSharp.Aspects.Serialization.BinaryAspectSerializationBinder">
<summary>
Implementation of <see cref="T:System.Runtime.Serialization.SerializationBinder" /> used at runtime when aspect instances
are deserialized. By overriding the default binder, you can resolve assembly names differently.
This can be useful if assemblies have been renamed or merged between PostSharp run and execution
</summary>
</member>
<member name="M:PostSharp.Aspects.Serialization.BinaryAspectSerializationBinder.#ctor">
<summary>
Initializes a new <seealso cref="T:PostSharp.Aspects.Serialization.BinaryAspectSerializationBinder" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Serialization.BinaryAspectSerializationBinder.BindToType(System.String,System.String)">
<summary>When overridden in a derived class, controls the binding of a serialized object to a type.</summary>
<param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly" /> name of the serialized object. </param>
<param name="typeName">Specifies the <see cref="T:System.Type" /> name of the serialized object. </param>
<returns>The type of the object the formatter creates a new instance of.</returns>
</member>
<member name="T:PostSharp.Aspects.Serialization.BinaryAspectSerializer">
<summary>
Implementation of <see cref="T:PostSharp.Aspects.Serialization.AspectSerializer" /> based on the
<see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" /> provided by the full version
of the .NET Framework.
</summary>
</member>
<member name="M:PostSharp.Aspects.Serialization.BinaryAspectSerializer.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Serialization.BinaryAspectSerializer</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.Serialization.BinaryAspectSerializer.ChainSurrogateSelector(System.Runtime.Serialization.ISurrogateSelector)">
<summary>
Adds an item to the chain of surrogate selectors
used during the process of serializing aspects.
</summary>
<param name="selector">A new surrogate selector.</param>
</member>
<member name="M:PostSharp.Aspects.Serialization.BinaryAspectSerializer.Deserialize(System.IO.Stream,PostSharp.Reflection.IMetadataDispenser)">
<summary>
Deserializes a stream into an array if aspects.
</summary>
<param name="stream">Stream containing serialized aspects.</param>
<param name="metadataDispenser">Metadata dispenser to be used to resolve serialized metadata references in <paramref name="stream" />.</param>
<returns>An array of aspects.</returns>
</member>
<member name="M:PostSharp.Aspects.Serialization.BinaryAspectSerializer.Serialize(PostSharp.Aspects.IAspect[],System.IO.Stream,PostSharp.Reflection.IMetadataEmitter)">
<summary>
Serializes an array of aspects into a stream.
</summary>
<param name="aspects">Array of aspects to be serialized.</param>
<param name="stream">Stream into which aspects have to be serialized.</param>
<param name="metadataEmitter">A metadata emitter for the current module.</param>
</member>
<member name="T:PostSharp.Aspects.Serialization.IMetadataAwareSurrogateSelector">
<summary>
A <see cref="T:System.Runtime.Serialization.SurrogateSelector" /> that receives an <see cref="T:PostSharp.Reflection.IMetadataEmitter" />
before serialization.
</summary>
</member>
<member name="M:PostSharp.Aspects.Serialization.IMetadataAwareSurrogateSelector.SetMetadataEmitter(PostSharp.Reflection.IMetadataEmitter)">
<summary>
Sets the <see cref="T:PostSharp.Reflection.IMetadataEmitter" />.
</summary>
<param name="metadataEmitter">An <see cref="T:PostSharp.Reflection.IMetadataEmitter" />.</param>
</member>
<member name="T:PostSharp.Aspects.Serialization.MsilAspectSerializer">
<summary>
When used as a value of <see cref="T:PostSharp.Aspects.Configuration.AspectConfigurationAttribute" />.<see cref="P:PostSharp.Aspects.Configuration.AspectConfigurationAttribute.SerializerType" />
property, specifies that the aspect should not be serialized but should instead be constructed at runtime using MSIL instructions.
</summary>
</member>
<member name="M:PostSharp.Aspects.Serialization.MsilAspectSerializer.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Serialization.MsilAspectSerializer</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.Serialization.MsilAspectSerializer.Serialize(PostSharp.Aspects.IAspect[],System.IO.Stream,PostSharp.Reflection.IMetadataEmitter)">
<summary>
Serializes an array of aspects into a stream.
</summary>
<param name="aspects">Array of aspects to be serialized.</param>
<param name="stream">Stream into which aspects have to be serialized.</param>
<param name="metadataEmitter">A metadata emitter for the current module.</param>
</member>
<member name="T:PostSharp.Aspects.Serialization.PortableAspectSerializer">
<summary>
Implementation of <see cref="T:PostSharp.Aspects.Serialization.AspectSerializer" /> based on the <see cref="T:PostSharp.Serialization.PortableFormatter" />, for use on any supported .NET platform.
</summary>
</member>
<member name="M:PostSharp.Aspects.Serialization.PortableAspectSerializer.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Serialization.PortableAspectSerializer</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Serialization.PortableAspectSerializer.Binder">
<summary>
Gets or sets the <see cref="T:PostSharp.Serialization.PortableSerializationBinder" /> used to deserialize aspects.
</summary>
</member>
<member name="M:PostSharp.Aspects.Serialization.PortableAspectSerializer.Serialize(PostSharp.Aspects.IAspect[],System.IO.Stream,PostSharp.Reflection.IMetadataEmitter)">
<summary>
Serializes an array of aspects into a stream.
</summary>
<param name="aspects">Array of aspects to be serialized.</param>
<param name="stream">Stream into which aspects have to be serialized.</param>
<param name="metadataEmitter">A metadata emitter for the current module.</param>
</member>
<member name="T:PostSharp.Collections.ILinkedListNode`1">
<summary>
Represents a node in a double-linked list.
</summary>
<typeparam name="T">Type of values stored in the list.</typeparam>
</member>
<member name="P:PostSharp.Collections.ILinkedListNode`1.Next">
<summary>
Gets the next node in the list, or <c>null</c> if the current node is the last one in the list.
</summary>
</member>
<member name="P:PostSharp.Collections.ILinkedListNode`1.Previous">
<summary>
Gets the previous node in the list, or <c>null</c> if the current node is the first one in the list.
</summary>
</member>
<member name="P:PostSharp.Collections.ILinkedListNode`1.Value">
<summary>
Gets the value stored in the current node.
</summary>
</member>
<member name="T:PostSharp.Collections.IReadOnlyLinkedList`1">
<summary>
Represents a double linked list.
</summary>
<typeparam name="T">Type of values stored in the link list.</typeparam>
</member>
<member name="P:PostSharp.Collections.IReadOnlyLinkedList`1.First">
<summary>
Gets the first node in the list, or <c>null</c> if the list is empty.
</summary>
</member>
<member name="P:PostSharp.Collections.IReadOnlyLinkedList`1.IsEmpty">
<summary>
Determines whether the list is empty.
</summary>
</member>
<member name="P:PostSharp.Collections.IReadOnlyLinkedList`1.Last">
<summary>
Gets the last node in the list, or <c>null</c> if the list is empty.
</summary>
</member>
<member name="T:PostSharp.Collections.ISinglyLinkedListNode`1">
<summary>
Represents a node in a singly linked list.
</summary>
<typeparam name="T">Type of values stored in the list.</typeparam>
</member>
<member name="P:PostSharp.Collections.ISinglyLinkedListNode`1.Next">
<summary>
Gets the next node in the list, or <c>null</c> if the current node is the last one in the list.
</summary>
</member>
<member name="P:PostSharp.Collections.ISinglyLinkedListNode`1.Value">
<summary>
Gets the value stored in the current node.
</summary>
</member>
<member name="T:PostSharp.Collections.LinkedListExtensions">
<summary>
Extensions to the <see cref="T:PostSharp.Collections.IReadOnlyLinkedList`1" /> interface.
</summary>
</member>
<member name="M:PostSharp.Collections.LinkedListExtensions.ToEnumerable``1(PostSharp.Collections.IReadOnlyLinkedList{``0})">
<summary>
Transforms an <see cref="T:PostSharp.Collections.IReadOnlyLinkedList`1" /> into an <see cref="T:System.Collections.Generic.IEnumerable`1" />.
</summary>
<param name="linkedList">A <see cref="T:PostSharp.Collections.IReadOnlyLinkedList`1" />, or <c>null</c>.</param>
<typeparam name="T">Type of values.</typeparam>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that can enumerate all elements in <paramref name="linkedList" />.
If <paramref name="linkedList" /> is <c>null</c>, an empty enumerable is returned.
</returns>
</member>
<member name="M:PostSharp.Collections.LinkedListExtensions.ToEnumerable``1(PostSharp.Collections.ReadOnlyLinkedList{``0})">
<summary>
Transforms a <see cref="T:PostSharp.Collections.ReadOnlyLinkedList`1" /> into an <see cref="T:System.Collections.Generic.IEnumerable`1" />.
</summary>
<param name="linkedList">An <see cref="T:PostSharp.Collections.ReadOnlyLinkedList`1" />.</param>
<typeparam name="T">Type of values.</typeparam>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that can enumerate all elements in <paramref name="linkedList" />.
If <paramref name="linkedList" /> is <c>null</c>, an empty enumerable is returned.
</returns>
</member>
<member name="T:PostSharp.Collections.ReadOnlyLinkedList`1">
<summary>
A value-type implementation of the <see cref="T:PostSharp.Collections.IReadOnlyLinkedList`1" /> interface.
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="P:PostSharp.Collections.ReadOnlyLinkedList`1.First">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>P:PostSharp.Collections.ReadOnlyLinkedList`1.First</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Collections.ReadOnlyLinkedList`1.IsEmpty">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>P:PostSharp.Collections.ReadOnlyLinkedList`1.IsEmpty</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Collections.ReadOnlyLinkedList`1.Last">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>P:PostSharp.Collections.ReadOnlyLinkedList`1.Last</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Collections.ReadOnlySinglyLinkedList`1">
<summary>
Represents a single-listed link.
</summary>
<typeparam name="T">Type of values stored in the list.</typeparam>
</member>
<member name="P:PostSharp.Collections.ReadOnlySinglyLinkedList`1.FirstNode">
<summary>
Gets the first node of the list.
</summary>
</member>
<member name="M:PostSharp.Collections.ReadOnlySinglyLinkedList`1.GetEnumerator">
<summary>
Gets a value-type enumerator.
</summary>
<returns>An enumerator.</returns>
</member>
<member name="P:PostSharp.Collections.ReadOnlySinglyLinkedList`1.IsEmpty">
<summary>
Determines whether the list is empty.
</summary>
</member>
<member name="T:PostSharp.Collections.ReadOnlySinglyLinkedList`1.Enumerator">
<summary>
An enumerator allowing to enumerate a <see cref="T:PostSharp.Collections.ReadOnlySinglyLinkedList`1" />.
</summary>
</member>
<member name="P:PostSharp.Collections.ReadOnlySinglyLinkedList`1.Enumerator.Current">
<summary>Gets the element in the collection at the current position of the enumerator.</summary>
<returns>The element in the collection at the current position of the enumerator.</returns>
</member>
<member name="M:PostSharp.Collections.ReadOnlySinglyLinkedList`1.Enumerator.Dispose">
<summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
</member>
<member name="M:PostSharp.Collections.ReadOnlySinglyLinkedList`1.Enumerator.MoveNext">
<summary>Advances the enumerator to the next element of the collection.</summary>
<returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
<exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created. </exception>
</member>
<member name="T:PostSharp.Constraints.ComponentInternalAttribute">
<summary>
<see cref="T:PostSharp.Constraints.ReferentialConstraint" /> that, when applied on a declaration, limits the scope (namespace or type) in which this declaration
can be used. This constraint is useful to isolate several components from each other, even if they are implemented in
the same assembly. The <i>ComponentInternal</i> constraint sets the visibility of a declaration between <c>internal</c> and <c>private</c>.
The constraint cannot be applied to public or protected declarations.
</summary>
</member>
<member name="M:PostSharp.Constraints.ComponentInternalAttribute.#ctor">
<summary>
Initializes a <see cref="T:PostSharp.Constraints.ComponentInternalAttribute" /> restricting the target declaration from being used
from another namespace than the namespace of the declaration.
</summary>
</member>
<member name="M:PostSharp.Constraints.ComponentInternalAttribute.#ctor(System.String[])">
<summary>
Initializes a <see cref="T:PostSharp.Constraints.ComponentInternalAttribute" /> restricting the target declaration from being used
outside of given types or namespaces, given by strings.
</summary>
<param name="friendNamespaces">List of types or namespaces from which the target declaration
can be used.</param>
</member>
<member name="M:PostSharp.Constraints.ComponentInternalAttribute.#ctor(System.Type[])">
<summary>
Initializes a <see cref="T:PostSharp.Constraints.ComponentInternalAttribute" /> restricting the target declaration from being used
outside of given types or namespaces, given as <see cref="T:System.Type" />.
</summary>
<param name="friendTypes">List of types from which the target declaration can be used. If the name of a
type is <c>NamespaceType</c>, the whole namespace of this type is allowed.</param>
</member>
<member name="P:PostSharp.Constraints.ComponentInternalAttribute.Severity">
<summary>
Gets or sets the severity of messages emitted by this constraint.
</summary>
</member>
<member name="M:PostSharp.Constraints.ComponentInternalAttribute.ValidateCode(System.Object,System.Reflection.Assembly)">
<summary>
Validates the constraint.
</summary>
<param name="target">Declaration (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.ParameterInfo" />) to which
the constraint has been applied.</param>
<param name="assembly">The assembly being currently processed.</param>
</member>
<member name="M:PostSharp.Constraints.ComponentInternalAttribute.ValidateConstraint(System.Object)">
<summary>
Validates the fact that the constraint has been applied on a valid element of code. When this
method returns <c>false</c>, the constraint is silently ignored.
</summary>
<param name="target"></param>
<returns>
<c>true</c> if the constraint has been applied on a valid element of code, otherwise <c>false</c>.</returns>
</member>
<member name="T:PostSharp.Constraints.Constraint">
<summary>
Root class for all constraints based on <see cref="T:PostSharp.Extensibility.MulticastAttribute" />.
A constraint is a piece validation logic executed at build time. Constraints
are applied to elements of code ((<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.ParameterInfo" />)
typically using multicast custom attributes, and verified
at build time for every assembly using this element of code.
</summary>
</member>
<member name="M:PostSharp.Constraints.Constraint.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Constraints.Constraint</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Constraints.Constraint.ValidateConstraint(System.Object)">
<summary>
Validates the fact that the constraint has been applied on a valid element of code. When this
method returns <c>false</c>, the constraint is silently ignored.
</summary>
<param name="target"></param>
<returns>
<c>true</c> if the constraint has been applied on a valid element of code, otherwise <c>false</c>.</returns>
</member>
<member name="T:PostSharp.Constraints.ExperimentalAttribute">
<summary>
Custom attribute that, when applied on a declaration, causes PostSharp to emit a warning if the declaration is being used.
</summary>
</member>
<member name="M:PostSharp.Constraints.ExperimentalAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Constraints.ExperimentalAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Constraints.ExperimentalAttribute.ValidateCode(System.Object,System.Reflection.Assembly)">
<summary>
Validates the constraint.
</summary>
<param name="target">Declaration (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.ParameterInfo" />) to which
the constraint has been applied.</param>
<param name="assembly">The assembly being currently processed.</param>
</member>
<member name="T:PostSharp.Constraints.IConstraint">
<summary>
A constraint is a piece of validation logic executed at build time. Constraints
are applied to elements of code (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.ParameterInfo" />),
typically (but not necessarily) using custom attributes or <see cref="T:PostSharp.Extensibility.MulticastAttribute" />.
</summary>
</member>
<member name="M:PostSharp.Constraints.IConstraint.ValidateConstraint(System.Object)">
<summary>
Validates the fact that the constraint has been applied on a valid element of code. When this
method returns <c>false</c>, the constraint is silently ignored.
</summary>
<param name="target"></param>
<returns>
<c>true</c> if the constraint has been applied on a valid element of code, otherwise <c>false</c>.</returns>
</member>
<member name="T:PostSharp.Constraints.InternalAttribute">
<summary>
<see cref="T:PostSharp.Constraints.ReferentialConstraint" />, when applied to a declaration, prevents it to be used from an different assembly.
This constraint can be used when a declaration must be made public for technical reasons, but its author do
not want it to be used in external code.
</summary>
</member>
<member name="M:PostSharp.Constraints.InternalAttribute.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Constraints.InternalAttribute" />.
</summary>
</member>
<member name="P:PostSharp.Constraints.InternalAttribute.Severity">
<summary>
Gets or sets the severity of messages emitted by this constraint.
</summary>
</member>
<member name="M:PostSharp.Constraints.InternalAttribute.ValidateCode(System.Object,System.Reflection.Assembly)">
<summary>
Validates the constraint.
</summary>
<param name="target">Declaration (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.ParameterInfo" />) to which
the constraint has been applied.</param>
<param name="assembly">The assembly being currently processed.</param>
</member>
<member name="M:PostSharp.Constraints.InternalAttribute.ValidateConstraint(System.Object)">
<summary>
Validates the fact that the constraint has been applied on a valid element of code. When this
method returns <c>false</c>, the constraint is silently ignored.
</summary>
<param name="target"></param>
<returns>
<c>true</c> if the constraint has been applied on a valid element of code, otherwise <c>false</c>.</returns>
</member>
<member name="T:PostSharp.Constraints.InternalImplementAttribute">
<summary>
<see cref="T:PostSharp.Constraints.ReferentialConstraint" /> that, when applied on an interface, prevents it to be implemented
in a different assembly. This constraint should be used when the author of an interface
does not expect users to implement the interface and wants to reserve the possibility
to add new methods to the interface.
</summary>
</member>
<member name="M:PostSharp.Constraints.InternalImplementAttribute.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Constraints.InternalImplementAttribute" />.
</summary>
</member>
<member name="P:PostSharp.Constraints.InternalImplementAttribute.Severity">
<summary>
Gets or sets the severity of messages emitted by this constraint.
</summary>
</member>
<member name="M:PostSharp.Constraints.InternalImplementAttribute.ValidateCode(System.Object,System.Reflection.Assembly)">
<summary>
Validates the constraint.
</summary>
<param name="target">Declaration (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.ParameterInfo" />) to which
the constraint has been applied.</param>
<param name="assembly">The assembly being currently processed.</param>
</member>
<member name="T:PostSharp.Constraints.IReferentialConstraint">
<summary>
A constraint is a piece validation logic executed at build time. Constraints
are applied to elements of code ((<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.ParameterInfo" />),
typically using custom attributes or <see cref="T:PostSharp.Extensibility.MulticastAttribute" />, and verified
at build time for every assembly using this element of code.
</summary>
</member>
<member name="M:PostSharp.Constraints.IReferentialConstraint.ValidateCode(System.Object,System.Reflection.Assembly)">
<summary>
Validates the constraint.
</summary>
<param name="target">Declaration (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.ParameterInfo" />) to which
the constraint has been applied.</param>
<param name="assembly">The assembly being currently processed.</param>
</member>
<member name="T:PostSharp.Constraints.IScalarConstraint">
<summary>
A constraint that validates a specific element of code. Use an <see cref="T:PostSharp.Constraints.IReferentialConstraint" />
to validate relationships between elements of code.
</summary>
</member>
<member name="M:PostSharp.Constraints.IScalarConstraint.ValidateCode(System.Object)">
<summary>
Validates the element of code to which the constraint is applied.
</summary>
<param name="target">Element of code to which the constraint is applied (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.ParameterInfo" />).</param>
</member>
<member name="T:PostSharp.Constraints.ProtectedAttribute">
<summary>
Custom attribute that, when applied to a target declaration, causes PostSharp to emit a warning if the declaration
is being referenced from classes that are not derived from the target class. This constraint is similar to the
C# keyword <c>protected</c> and should be used only when the target declaration must be made public or internal
for non-architectural reasons.
</summary>
</member>
<member name="M:PostSharp.Constraints.ProtectedAttribute.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Constraints.ProtectedAttribute" />.
</summary>
</member>
<member name="P:PostSharp.Constraints.ProtectedAttribute.Severity">
<summary>
Gets or sets the severity of messages emitted by this constraint.
</summary>
</member>
<member name="M:PostSharp.Constraints.ProtectedAttribute.ValidateCode(System.Object,System.Reflection.Assembly)">
<summary>
Validates the constraint.
</summary>
<param name="target">Declaration (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.ParameterInfo" />) to which
the constraint has been applied.</param>
<param name="assembly">The assembly being currently processed.</param>
</member>
<member name="M:PostSharp.Constraints.ProtectedAttribute.ValidateConstraint(System.Object)">
<summary>
Validates the fact that the constraint has been applied on a valid element of code. When this
method returns <c>false</c>, the constraint is silently ignored.
</summary>
<param name="target">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>target</parameter>
<parameter>M:PostSharp.Constraints.ProtectedAttribute.ValidateConstraint(System.Object)</parameter>
</include>
</markup>
</param>
<returns>
<c>true</c> if the constraint has been applied on a valid element of code, otherwise <c>false</c>.</returns>
</member>
<member name="T:PostSharp.Constraints.ReferentialConstraint">
<summary>
Implementation of <see cref="T:PostSharp.Constraints.IReferentialConstraint" /> based on <see cref="T:PostSharp.Extensibility.MulticastAttribute" />.
</summary>
</member>
<member name="M:PostSharp.Constraints.ReferentialConstraint.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Constraints.ReferentialConstraint</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Constraints.ReferentialConstraint.ValidateCode(System.Object,System.Reflection.Assembly)">
<summary>
Validates the constraint.
</summary>
<param name="target">Declaration (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.ParameterInfo" />) to which
the constraint has been applied.</param>
<param name="assembly">The assembly being currently processed.</param>
</member>
<member name="T:PostSharp.Constraints.ScalarConstraint">
<summary>
Implementation of <see cref="T:PostSharp.Constraints.IScalarConstraint" /> based on <see cref="T:PostSharp.Extensibility.MulticastAttribute" />.
</summary>
</member>
<member name="M:PostSharp.Constraints.ScalarConstraint.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Constraints.ScalarConstraint</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Constraints.ScalarConstraint.ValidateCode(System.Object)">
<summary>
Validates the element of code to which the constraint is applied.
</summary>
<param name="target">Element of code to which the constraint is applied (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.ParameterInfo" />).</param>
</member>
<member name="T:PostSharp.Extensibility.AssemblyIdAttribute">
<summary>
Assigns a unique identifier to an assembly. This assembly identifier is used
to generate unique attribute identifiers.
</summary>
</member>
<member name="M:PostSharp.Extensibility.AssemblyIdAttribute.#ctor(System.Int32)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.AssemblyIdAttribute" />.
</summary>
<param name="id">Assembly identifier.</param>
</member>
<member name="T:PostSharp.Extensibility.AssemblyLoadContext">
<summary>
Enumeration of contexts in which assemblies can be loaded.
</summary>
</member>
<member name="F:PostSharp.Extensibility.AssemblyLoadContext.Reference">
<summary>
Reference assemblies the ones the project is being linked against. They are typically located
in directory <c>C:\Program Files\Reference Assemblies</c> for the proper target platform.
</summary>
</member>
<member name="F:PostSharp.Extensibility.AssemblyLoadContext.Runtime">
<summary>
Runtime assemblies are the ones loaded at build time in the CLR. They are typically located
in GAC.
</summary>
</member>
<member name="T:PostSharp.Extensibility.CompatibilityLevel">
<summary>
Enumeration of standard levels of backward compatibility.
</summary>
</member>
<member name="F:PostSharp.Extensibility.CompatibilityLevel.Undefined">
<summary>
No compatibility level defined (latest at execution time).
</summary>
</member>
<member name="F:PostSharp.Extensibility.CompatibilityLevel.PostSharp30">
<summary>
Compatibility level for PostSharp 3.0.
</summary>
</member>
<member name="F:PostSharp.Extensibility.CompatibilityLevel.Latest">
<summary>
Latest at build time.
</summary>
</member>
<member name="T:PostSharp.Extensibility.CompatibilityLevelAttribute">
<summary>
Sets the level of backward compatibility required by aspects in the current assembly.
</summary>
</member>
<member name="M:PostSharp.Extensibility.CompatibilityLevelAttribute.#ctor(PostSharp.Extensibility.CompatibilityLevel)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.CompatibilityLevelAttribute" />.
</summary>
<param name="level">Level of backward compatibility required by aspects in the current assembly.</param>
</member>
<member name="T:PostSharp.Extensibility.EnhancedByPostSharpAttribute">
<summary>
Custom attribute added to the assembly manifest of modules processed by PostSharp.
</summary>
</member>
<member name="M:PostSharp.Extensibility.EnhancedByPostSharpAttribute.#ctor(System.Int32)">
<summary>
Instantiates a new <see cref="T:PostSharp.Extensibility.EnhancedByPostSharpAttribute" /> and specifies the license number
(not the full license key).
</summary>
<param name="licenseId">License number.</param>
</member>
<member name="M:PostSharp.Extensibility.EnhancedByPostSharpAttribute.#ctor(System.String)">
<summary>
Instantiate a new <see cref="T:PostSharp.Extensibility.EnhancedByPostSharpAttribute" /> with a text message,
typically used when PostSharp runs in evaluation mode.
</summary>
<param name="message">The watermark text.</param>
</member>
<member name="T:PostSharp.Extensibility.EscalatePostSharpMessageAttribute">
<summary>
Custom attribute that, when applied on an assembly, means that a given message
should be escalated to an error during the current <c>PostSharp</c> session.
</summary>
</member>
<member name="M:PostSharp.Extensibility.EscalatePostSharpMessageAttribute.#ctor(System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.EscalatePostSharpMessageAttribute" />.
</summary>
<param name="messageId">Identifier of the message to be disabled.</param>
</member>
<member name="P:PostSharp.Extensibility.EscalatePostSharpMessageAttribute.MessageId">
<summary>
Gets the identifier of the message to be disabled.
</summary>
</member>
<member name="T:PostSharp.Extensibility.FrameworkVariants">
<summary>
Defines constants identifying the different variants of the
.NET Framework (<see cref="F:PostSharp.Extensibility.FrameworkVariants.Full" />, <see cref="F:PostSharp.Extensibility.FrameworkVariants.Compact" />, <see cref="F:PostSharp.Extensibility.FrameworkVariants.Silverlight" />).
</summary>
</member>
<member name="F:PostSharp.Extensibility.FrameworkVariants.Compact">
<summary>
.NET Compact Framework.
</summary>
</member>
<member name="M:PostSharp.Extensibility.FrameworkVariants.FromBytes(System.Byte[])">
<summary>
Convert a byte array (typically containing the public key token of <c>mscorlib</c>)
into a string that can be compared to one of the constants defined in this class.
</summary>
<param name="bytes">A byte array (typically containing the public key token of <c>mscorlib</c>)</param>
<returns>A string that can be compared to one of the constants defined in this class</returns>
</member>
<member name="F:PostSharp.Extensibility.FrameworkVariants.Full">
<summary>
Normal, full .NET Framework.
</summary>
</member>
<member name="F:PostSharp.Extensibility.FrameworkVariants.Micro">
<summary>
Micro Framework.
</summary>
</member>
<member name="F:PostSharp.Extensibility.FrameworkVariants.Silverlight">
<summary>
Silverlight.
</summary>
</member>
<member name="T:PostSharp.Extensibility.HasInheritedAttributeAttribute">
<summary>
<b>Internal Only.</b> Custom attribute used internally by <c>PostSharp</c> to mark
elements having inherited custom attributes. This custom attribute should not
be used in custom code, otherwise <c>PostSharp</c> may not work properly.
</summary>
</member>
<member name="T:PostSharp.Extensibility.IMessageDispenser">
<summary>
Gets a text given its key.
</summary>
</member>
<member name="M:PostSharp.Extensibility.IMessageDispenser.GetMessage(System.String)">
<summary>
Gets a message text given a message key.
</summary>
<param name="key">Message key.</param>
<returns>The text corresponding to <paramref name="key" />.</returns>
</member>
<member name="T:PostSharp.Extensibility.IMessageSink">
<summary>
Receives messages.
</summary>
</member>
<member name="M:PostSharp.Extensibility.IMessageSink.Write(PostSharp.Extensibility.Message)">
<summary>
Writes a message to the sink.
</summary>
<param name="message">A message.</param>
</member>
<member name="T:PostSharp.Extensibility.ImplementationBoundAttributeAttribute">
<summary>
Custom attribute meaning that custom attributes of a given type are
bound to the implementation, not to the semantics.
</summary>
</member>
<member name="M:PostSharp.Extensibility.ImplementationBoundAttributeAttribute.#ctor(System.Type)">
<summary>
Initializes the new <see cref="T:PostSharp.Extensibility.ImplementationBoundAttributeAttribute" />.
</summary>
<param name="attributeType">Type of the custom attribute that
should not be moved from implementation to semantic.</param>
</member>
<member name="P:PostSharp.Extensibility.ImplementationBoundAttributeAttribute.AttributeType">
<summary>
Gets the type of the custom attribute that
should not be moved from implementation to semantic
</summary>
</member>
<member name="T:PostSharp.Extensibility.InvalidAnnotationException">
<summary>
Exception thrown at build time by implementation of <see cref="M:PostSharp.Extensibility.IValidableAnnotation.CompileTimeValidate(System.Object)" />
when an annotation is invalid.
</summary>
</member>
<member name="M:PostSharp.Extensibility.InvalidAnnotationException.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.InvalidAnnotationException" /> with default message.
</summary>
</member>
<member name="M:PostSharp.Extensibility.InvalidAnnotationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Deserialization constructor.
</summary>
<param name="info">Info.</param>
<param name="context">Context.</param>
</member>
<member name="M:PostSharp.Extensibility.InvalidAnnotationException.#ctor(System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.InvalidAnnotationException" /> and with a specified exception message.
</summary>
<param name="message">Exception message</param>
</member>
<member name="M:PostSharp.Extensibility.InvalidAnnotationException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.InvalidAnnotationException" /> with a specified exception message
and inner <see cref="T:System.Exception" />.
</summary>
<param name="message">Exception message.</param>
<param name="inner">Inner exception.</param>
</member>
<member name="T:PostSharp.Extensibility.IPostSharpEnvironment">
<summary>
Provides information about the current <c>PostSharp</c> environment.
</summary>
</member>
<member name="P:PostSharp.Extensibility.IPostSharpEnvironment.CurrentProject">
<summary>
Gets the currently executing project.
</summary>
</member>
<member name="M:PostSharp.Extensibility.IPostSharpEnvironment.FindAssembly(System.Reflection.AssemblyName)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Extensibility.IPostSharpEnvironment.FindAssembly(System.Reflection.AssemblyName)</parameter>
</include>
</markup>
</summary>
<param name="name">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>name</parameter>
<parameter>M:PostSharp.Extensibility.IPostSharpEnvironment.FindAssembly(System.Reflection.AssemblyName)</parameter>
</include>
</markup>
</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Extensibility.IPostSharpEnvironment.FindAssembly(System.Reflection.AssemblyName)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Extensibility.IPostSharpEnvironment.FindAssembly(System.Reflection.AssemblyName,PostSharp.Extensibility.AssemblyLoadContext)">
<summary>
Finds the location of an assembly given its name.
</summary>
<param name="name">Assembly name.</param>
<param name="loadContext">
<see cref="F:PostSharp.Extensibility.AssemblyLoadContext.Reference" /> or <see cref="F:PostSharp.Extensibility.AssemblyLoadContext.Runtime" />.</param>
<returns>The full path of the assembly, or <c>null</c> if the assembly could not be found.</returns>
</member>
<member name="M:PostSharp.Extensibility.IPostSharpEnvironment.LoadAssemblyFromFile(System.String)">
<summary>
Loads an <see cref="T:System.Reflection.Assembly" /> given its file name.
</summary>
<param name="fileName">Full assembly path.</param>
<returns>The <see cref="T:System.Reflection.Assembly" />.</returns>
</member>
<member name="T:PostSharp.Extensibility.IProject">
<summary>
Provides information about the currently executing project.
</summary>
</member>
<member name="M:PostSharp.Extensibility.IProject.EvaluateExpression(System.String)">
<summary>
Evaluates an expression (that is, replace parameters by their actual value).
</summary>
<param name="expression">An expression.</param>
<returns>The evaluated expression, or <c>null</c> if one parameter could not be
resolved.</returns>
</member>
<member name="M:PostSharp.Extensibility.IProject.GetExtensionElements(System.String,System.String)">
<summary>
Gets the set of project extension elements (<see cref="T:PostSharp.Extensibility.ProjectExtensionElement" />) given their name and XML namespace.
</summary>
<param name="name">Local name of the project extension element.</param>
<param name="ns">XML namespace of the project extension element.</param>
<returns>The set of project elements named <paramref name="name" /> in all loaded projects.</returns>
</member>
<member name="M:PostSharp.Extensibility.IProject.GetFrameworkVariant">
<summary>
Gets the variant of the .NET Framework against which the .NET assembly
currently processed is linked.
</summary>
<returns>A string uniquely identifying the framework variant, to be compared
to the constants defined in the <see cref="T:PostSharp.Extensibility.FrameworkVariants" /> class.
Actually, the public key token of <c>mscorlib</c> is returned.</returns>
</member>
<member name="M:PostSharp.Extensibility.IProject.GetService``1(System.Boolean)">
<summary>
Gets a build-time service exposed by PostSharp.
</summary>
<param name="throwing">
<c>true</c> whether an exception should be thrown in case the service cannot be acquired, otherwise <c>false</c>.
The default value is <c>true</c>.</param>
<typeparam name="T">An interface derived from <see cref="T:PostSharp.Extensibility.IService" />.</typeparam>
<returns>The service <typeparamref name="T" />, or <c>null</c> if the service could not be acquired and <paramref name="throwing" />
was set to <c>false</c>.</returns>
</member>
<member name="M:PostSharp.Extensibility.IProject.GetTargetAssembly(System.Boolean)">
<summary>
Gets the assembly that is being transformed by PostSharp.
</summary>
<param name="reflectionOnly">
<c>false</c> if the system <see cref="T:System.Reflection.Assembly" /> has to be returned, <c>true</c> if a wrapper has to be returned.</param>
<returns>The assembly being processed. If <paramref name="reflectionOnly" /> is <c>true</c>, this method returns an instance of a PostSharp internal
type implementing the <see cref="T:System.Reflection.Assembly" /> interface. Otherwise, the reflection <see cref="T:System.Reflection.Assembly" /> is returned.</returns>
</member>
<member name="P:PostSharp.Extensibility.IProject.StateStore">
<summary>
Gets the context of the current project that serves as a project-scoped cache.
</summary>
</member>
<member name="P:PostSharp.Extensibility.IProject.TargetFramework">
<summary>
Gets the variant and version of the .NET Framework that the assembly being built targets.
</summary>
</member>
<member name="T:PostSharp.Extensibility.IReflectionBindingManagerService">
<summary>
Exposes the <see cref="M:PostSharp.Extensibility.IReflectionBindingManagerService.ResolveAssembly(System.Type)" /> method, which gets the reference identity of
the assembly declaring a given type.
</summary>
</member>
<member name="M:PostSharp.Extensibility.IReflectionBindingManagerService.ResolveAssembly(System.Type)">
<summary>
Returns the reference identity of the assembly declaring a type.
</summary>
<param name="type">A <see cref="T:System.Type" />.</param>
<returns>The identity of the reference assembly defining <see cref="T:System.Type" />. This assembly is possibly
different than the runtime assembly, which is available from the <see cref="P:System.Type.Assembly" /> property
of the <see cref="T:System.Type" /> class. This method may return <c>null</c> if <paramref name="type" /> is
an internal type of a system assembly.</returns>
</member>
<member name="T:PostSharp.Extensibility.IService">
<summary>
A service exposed by the build-time part of PostSharp.
</summary>
</member>
<member name="T:PostSharp.Extensibility.IServiceLocator">
<summary>
Exposes build-time services.
</summary>
</member>
<member name="M:PostSharp.Extensibility.IServiceLocator.GetService``1(System.Boolean)">
<summary>
Gets a build-time service exposed by PostSharp.
</summary>
<param name="throwing">
<c>true</c> whether an exception should be thrown in case the service cannot be acquired, otherwise <c>false</c>.
The default value is <c>true</c>.</param>
<typeparam name="T">An interface derived from <see cref="T:PostSharp.Extensibility.IService" />.</typeparam>
<returns>The service <typeparamref name="T" />, or <c>null</c> if the service could not be acquired and <paramref name="throwing" />
was set to <c>false</c>.</returns>
</member>
<member name="T:PostSharp.Extensibility.IStateStore">
<summary>
A context that provides storage for arbitrary items.
</summary>
</member>
<member name="M:PostSharp.Extensibility.IStateStore.Get``1">
<summary>
Gets a value of a given type from the store.
</summary>
<typeparam name="T">Type of the value.</typeparam>
<returns>The value whose type is <typeparamref name="T" />, or <c>null</c> if the store
does not contain such value.</returns>
</member>
<member name="M:PostSharp.Extensibility.IStateStore.GetOrAdd``1(System.Func{``0})">
<summary>
Gets a value from the cache or adds it if it does not exist yet.
</summary>
<param name="getter">The delegate invoked if no value of type <typeparamref name="T" /> is
present in the cache.</param>
<typeparam name="T">Type of the value.</typeparam>
<returns>Either the value of type <typeparamref name="T" /> present in the cache,
either the result of the <paramref name="getter" /> delegate.</returns>
</member>
<member name="M:PostSharp.Extensibility.IStateStore.GetOrNew``1">
<summary>
Gets a value from the cache or adds a default value if it does not exist yet.
</summary>
<typeparam name="T">Type of value.</typeparam>
<returns>Either the value of type <typeparamref name="T" /> present in the cache,
either a new object of type <typeparamref name="T" />.</returns>
</member>
<member name="M:PostSharp.Extensibility.IStateStore.Set``1(``0)">
<summary>
Adds a value to the store or replace it if a value of the same type already exists.
</summary>
<param name="value">The new value.</param>
<typeparam name="T">Type of the new value.</typeparam>
</member>
<member name="T:PostSharp.Extensibility.ITargetFramework">
<summary>
Represents a version and variant of the .NET framework (running on a device) on which the project being built is design to run.
</summary>
</member>
<member name="P:PostSharp.Extensibility.ITargetFramework.FrameworkMoniker">
<summary>
Unique string identifier of the target device.
</summary>
</member>
<member name="P:PostSharp.Extensibility.ITargetFramework.FrameworkProfile">
<summary>
Gets the target profile of the framework (e.g. <c>WindowsPhone</c>).
</summary>
</member>
<member name="P:PostSharp.Extensibility.ITargetFramework.TargetFrameworkFamily">
<summary>
Identifier of the framework family (<see cref="F:PostSharp.Extensibility.TargetFrameworkFamily.NetFramework" />,
<see cref="F:PostSharp.Extensibility.TargetFrameworkFamily.NetCore" />, <see cref="F:PostSharp.Extensibility.TargetFrameworkFamily.Silverlight" />,
<see cref="F:PostSharp.Extensibility.TargetFrameworkFamily.NetPortable" />).
</summary>
</member>
<member name="P:PostSharp.Extensibility.ITargetFramework.Version">
<summary>
Gets the version of the target profile.
</summary>
</member>
<member name="T:PostSharp.Extensibility.IValidableAnnotation">
<summary>
Interface that, when implemented by a custom attribute (<see cref="T:System.Attribute" />),
causes <c>PostSharp</c> to invoke a validation method for every instance
of that custom attribute.
</summary>
</member>
<member name="M:PostSharp.Extensibility.IValidableAnnotation.CompileTimeValidate(System.Object)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to
the right target.
</summary>
<param name="target">Target element.</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable target, otherwise
<c>false</c>.</returns>
</member>
<member name="T:PostSharp.Extensibility.IWeavingSymbolsService">
<summary>
Service that allows build-time code to push annotations (both programmatic and user-visible)
to PostSharp Tools for Visual Studio.
</summary>
</member>
<member name="M:PostSharp.Extensibility.IWeavingSymbolsService.PushAnnotation(System.Object,System.Type,System.String,System.String,System.Int32)">
<summary>
Pushes an annotation to PostSharp Tools for Visual Studio.
</summary>
<param name="targetDeclaration">The declaration to which the annotation relate.</param>
<param name="annotationClass">The type of the annotation.</param>
<param name="arguments">Arguments of the annotation.</param>
<param name="description">A human-readable description of the annotation.</param>
<param name="linesOfCodeAvoided">A number incrementing the number of lines of code saved on <paramref name="targetDeclaration" />.</param>
</member>
<member name="T:PostSharp.Extensibility.Message">
<summary>
Encapsulates a message (error, warning, info, ...).
</summary>
</member>
<member name="M:PostSharp.Extensibility.Message.#ctor(PostSharp.Extensibility.SeverityType,System.String,System.String,System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.Message" /> and specifies only required parameters.
</summary>
<param name="severity">Message severity (fatal error, error, info, debug).</param>
<param name="messageId">Identifier of the message type.</param>
<param name="source">Name of the component emitting the message.</param>
<param name="messageText">Fully formatted message text.</param>
</member>
<member name="M:PostSharp.Extensibility.Message.#ctor(PostSharp.Extensibility.SeverityType,System.String,System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.Exception)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.Message" /> and specifies all its properties.
</summary>
<param name="severity">Message severity (fatal error, error, info, debug).</param>
<param name="messageId">Identifier of the message type.</param>
<param name="locationFile">File that caused the error, or <c>null</c> if
the file is unknown or does not apply.</param>
<param name="locationLine"> Position (line) in the file that caused the error,
or <see cref="F:PostSharp.Extensibility.Message.NotAvailable" /> if the line is
unknown or does not apply.</param>
<param name="locationColumn">Position (column) in the file that caused the error,
or <see cref="F:PostSharp.Extensibility.Message.NotAvailable" /> if the line is
unknown or does not apply.</param>
<param name="innerException">The <see cref="T:System.Exception" /> that caused this message,
or <c>null</c> if this message was not caused by an
exception.</param>
<param name="source">Name of the component emitting the message.</param>
<param name="helpLink">Link to the help file page associated to this message.</param>
<param name="messageText">Fully formatted message text.</param>
</member>
<member name="M:PostSharp.Extensibility.Message.#ctor(PostSharp.Extensibility.SeverityType,System.String,System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Exception)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.Message" /> and specifies all its properties.
</summary>
<param name="severity">Message severity (fatal error, error, info, debug).</param>
<param name="messageId">Identifier of the message type.</param>
<param name="locationFile">File that caused the error, or <c>null</c> if
the file is unknown or does not apply.</param>
<param name="locationStartLine">Start position (line) in the file that caused the error,
or <see cref="F:PostSharp.Extensibility.Message.NotAvailable" /> if the line is
unknown or does not apply.</param>
<param name="locationStartColumn">Start position (column) in the file that caused the error,
or <see cref="F:PostSharp.Extensibility.Message.NotAvailable" /> if the line is
unknown or does not apply.</param>
<param name="locationEndLine">End position (line) in the file that caused the error,
or <see cref="F:PostSharp.Extensibility.Message.NotAvailable" /> if the line is
unknown or does not apply.</param>
<param name="locationEndColumn">End position (column) in the file that caused the error,
or <see cref="F:PostSharp.Extensibility.Message.NotAvailable" /> if the line is
unknown or does not apply.</param>
<param name="innerException">The <see cref="T:System.Exception" /> that caused this message,
or <c>null</c> if this message was not caused by an
exception.</param>
<param name="source">Name of the component emitting the message.</param>
<param name="helpLink">Link to the help file page associated to this message.</param>
<param name="messageText">Fully formatted message text.</param>
</member>
<member name="M:PostSharp.Extensibility.Message.#ctor(PostSharp.MessageLocation,PostSharp.Extensibility.SeverityType,System.String,System.String,System.String,System.String,System.Exception)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.Message" /> and specifies all its properties.
</summary>
<param name="location">Element of code (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />,
<see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" /> or <see cref="T:System.Reflection.ParameterInfo" />)
to which the message applies. When called from PostSharp.Sdk, the parameter can also contain a <c>MetadataDeclaration</c>.</param>
<param name="severity">Message severity (fatal error, error, info, debug).</param>
<param name="messageId">Identifier of the message type.</param>
<param name="messageText">Fully formatted message text.</param>
<param name="helpLink">Link to the help file page associated to this message.</param>
<param name="source">Name of the component emitting the message.</param>
<param name="innerException">The <see cref="T:System.Exception" /> that caused this message,
or <c>null</c> if this message was not caused by an
exception.</param>
</member>
<member name="M:PostSharp.Extensibility.Message.GetExceptionStackMessage(System.Exception)">
<summary>
Returns a string composed of the messages of
all inner exceptions.
</summary>
<param name="outerException">The outer exception.</param>
<returns>A string composed of the messages of all
<paramref name="outerException" /> and all inner exceptions,
concatenated by the string <c>--&gt;</c>.</returns>
</member>
<member name="P:PostSharp.Extensibility.Message.HelpLink">
<summary>
Gets the help link.
</summary>
</member>
<member name="P:PostSharp.Extensibility.Message.InnerException">
<summary>
Gets the
</summary>
</member>
<member name="P:PostSharp.Extensibility.Message.Location">
<summary>
Location of the source code artifact causing the message.
</summary>
</member>
<member name="P:PostSharp.Extensibility.Message.LocationEndColumn">
<summary>
Gets the end column in the file that caused the message.
</summary>
</member>
<member name="P:PostSharp.Extensibility.Message.LocationEndLine">
<summary>
Gets the end line in the file that caused the message.
</summary>
</member>
<member name="P:PostSharp.Extensibility.Message.LocationFile">
<summary>
Gets the name of the file that caused
the message.
</summary>
</member>
<member name="P:PostSharp.Extensibility.Message.LocationStartColumn">
<summary>
Gets the start column in the file that caused the message.
</summary>
</member>
<member name="P:PostSharp.Extensibility.Message.LocationStartLine">
<summary>
Gets the start line in the file that caused the message.
</summary>
</member>
<member name="P:PostSharp.Extensibility.Message.MessageId">
<summary>
Gets the message type identifier.
</summary>
</member>
<member name="P:PostSharp.Extensibility.Message.MessageText">
<summary>
Gets the message formatted text.
</summary>
</member>
<member name="F:PostSharp.Extensibility.Message.NotAvailable">
<summary>
When set to the <c>locationLine</c> or <c>locationColumn</c> constructor parameter or the <see cref="P:PostSharp.Extensibility.Message.LocationStartColumn" />,
<see cref="P:PostSharp.Extensibility.Message.LocationEndColumn" />, <see cref="P:PostSharp.Extensibility.Message.LocationStartLine" />, <see cref="P:PostSharp.Extensibility.Message.LocationEndLine" />, means that the value of this property is unknown.
</summary>
</member>
<member name="P:PostSharp.Extensibility.Message.Severity">
<summary>
Gets the message severity.
</summary>
</member>
<member name="P:PostSharp.Extensibility.Message.Source">
<summary>
Gets or sets the name of the source component.
</summary>
</member>
<member name="M:PostSharp.Extensibility.Message.Write(PostSharp.Extensibility.Message)">
<summary>
Writes a message by providing a <see cref="T:PostSharp.Extensibility.Message" /> object.
</summary>
<param name="message">A <see cref="T:PostSharp.Extensibility.Message" />.</param>
</member>
<member name="M:PostSharp.Extensibility.Message.Write(PostSharp.Extensibility.SeverityType,System.String,System.String)">
<summary>
Obsolete.
</summary>
<param name="severity">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>severity</parameter>
<parameter>M:PostSharp.Extensibility.Message.Write(PostSharp.Extensibility.SeverityType,System.String,System.String)</parameter>
</include>
</markup>
</param>
<param name="errorCode">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>errorCode</parameter>
<parameter>M:PostSharp.Extensibility.Message.Write(PostSharp.Extensibility.SeverityType,System.String,System.String)</parameter>
</include>
</markup>
</param>
<param name="message">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>message</parameter>
<parameter>M:PostSharp.Extensibility.Message.Write(PostSharp.Extensibility.SeverityType,System.String,System.String)</parameter>
</include>
</markup>
</param>
</member>
<member name="M:PostSharp.Extensibility.Message.Write(PostSharp.Extensibility.SeverityType,System.String,System.String,System.Object[])">
<summary>
Writes a message.
</summary>
<param name="severity">Severity.</param>
<param name="errorCode">Error code.</param>
<param name="format">Error message formatting string.</param>
<param name="arguments">Error message arguments.</param>
</member>
<member name="M:PostSharp.Extensibility.Message.Write(PostSharp.MessageLocation,PostSharp.Extensibility.SeverityType,System.String,System.String)">
<summary>
Writes a message.
</summary>
<param name="severity">Severity.</param>
<param name="errorCode">Error code.</param>
<param name="message">Error message.</param>
<param name="messageLocation">Element of code (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />,
<see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" /> or <see cref="T:System.Reflection.ParameterInfo" />)
to which the message applies. When called from PostSharp.Sdk, the parameter can also contain a <c>MetadataDeclaration</c>.</param>
</member>
<member name="M:PostSharp.Extensibility.Message.Write(PostSharp.MessageLocation,PostSharp.Extensibility.SeverityType,System.String,System.String,System.Object[])">
<summary>
Writes a message.
</summary>
<param name="severity">Severity.</param>
<param name="errorCode">Error code.</param>
<param name="format">Error message formatting string.</param>
<param name="arguments">Formatting string arguments.</param>
<param name="messageLocation">Element of code (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />,
<see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" /> or <see cref="T:System.Reflection.ParameterInfo" />)
to which the message applies. When called from PostSharp.Sdk, the parameter can also contain a <c>MetadataDeclaration</c>.</param>
</member>
<member name="M:PostSharp.Extensibility.Message.Write(PostSharp.Reflection.LocationInfo,PostSharp.Extensibility.SeverityType,System.String,System.String,System.Object[])">
<summary>
Writes a message.
</summary>
<param name="severity">Severity.</param>
<param name="errorCode">Error code.</param>
<param name="format">Error message formatting string.</param>
<param name="arguments">Formatting string arguments.</param>
<param name="codeElement">Element of code to which the message applies.</param>
</member>
<member name="M:PostSharp.Extensibility.Message.Write(System.Reflection.Assembly,PostSharp.Extensibility.SeverityType,System.String,System.String,System.Object[])">
<summary>
Writes a message.
</summary>
<param name="severity">Severity.</param>
<param name="errorCode">Error code.</param>
<param name="format">Error message formatting string.</param>
<param name="arguments">Formatting string arguments.</param>
<param name="codeElement">Element of code to which the message applies.</param>
</member>
<member name="M:PostSharp.Extensibility.Message.Write(System.Reflection.MemberInfo,PostSharp.Extensibility.SeverityType,System.String,System.String,System.Object[])">
<summary>
Writes a message.
</summary>
<param name="severity">Severity.</param>
<param name="errorCode">Error code.</param>
<param name="format">Error message formatting string.</param>
<param name="arguments">Formatting string arguments.</param>
<param name="codeElement">Element of code to which the message applies.</param>
</member>
<member name="M:PostSharp.Extensibility.Message.Write(System.Reflection.ParameterInfo,PostSharp.Extensibility.SeverityType,System.String,System.String,System.Object[])">
<summary>
Writes a message.
</summary>
<param name="severity">Severity.</param>
<param name="errorCode">Error code.</param>
<param name="format">Error message formatting string.</param>
<param name="arguments">Formatting string arguments.</param>
<param name="codeElement">Element of code to which the message applies.</param>
</member>
<member name="M:PostSharp.Extensibility.Message.Write(System.Type,PostSharp.Extensibility.SeverityType,System.String,System.String,System.Object[])">
<summary>
Writes a message.
</summary>
<param name="severity">Severity.</param>
<param name="errorCode">Error code.</param>
<param name="format">Error message formatting string.</param>
<param name="arguments">Formatting string arguments.</param>
<param name="type">Element of code to which the message applies.</param>
</member>
<member name="T:PostSharp.Extensibility.MessageDispenser">
<summary>
Provides a base implementation of <see cref="T:PostSharp.Extensibility.IMessageDispenser" />
where the message key is supposed to be in format <c>PRE0000</c>, where
<c>PRE</c> is a prefix and <c>0000</c> is an integer. Keys for help URLs
have the format <c>PRE0000?</c>.
</summary>
</member>
<member name="M:PostSharp.Extensibility.MessageDispenser.#ctor(System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.MessageDispenser" />.
</summary>
<param name="prefix">Prefix of all messages provided by the new dispenser.</param>
</member>
<member name="M:PostSharp.Extensibility.MessageDispenser.GetHelpUrl(System.Int32)">
<summary>
Gets the message help URL of a given number.
</summary>
<param name="number">Message number.</param>
<returns>The message help URL corresponding to <paramref name="number" />.</returns>
</member>
<member name="M:PostSharp.Extensibility.MessageDispenser.GetMessage(System.Int32)">
<summary>
Gets the message text of a given number.
</summary>
<param name="number">Message number.</param>
<returns>The message text corresponding to <paramref name="number" />.</returns>
</member>
<member name="M:PostSharp.Extensibility.MessageDispenser.GetMessage(System.String)">
<summary>
Gets a message text given a message key.
</summary>
<param name="key">Message key.</param>
<returns>The text corresponding to <paramref name="key" />.</returns>
</member>
<member name="P:PostSharp.Extensibility.MessageDispenser.Prefix">
<summary>
Gets the message prefix.
</summary>
</member>
<member name="T:PostSharp.Extensibility.MessageException">
<summary>
Exception embedding a <see cref="T:PostSharp.Extensibility.Message" />.
</summary>
</member>
<member name="M:PostSharp.Extensibility.MessageException.#ctor(PostSharp.Extensibility.Message)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.MessageException" /> from
an existing <see cref="T:PostSharp.Extensibility.Message" />.
</summary>
<param name="message">A <see cref="T:PostSharp.Extensibility.Message" />.</param>
</member>
<member name="M:PostSharp.Extensibility.MessageException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the current object.
</summary>
<param name="info">Serialization information.</param>
<param name="context">Serialization context.</param>
</member>
<member name="P:PostSharp.Extensibility.MessageException.MessageObject">
<summary>
Gets the <see cref="T:PostSharp.Extensibility.Message" /> em
</summary>
</member>
<member name="T:PostSharp.Extensibility.MessageSource">
<summary>
Provides commodity methods to work with an <see cref="T:PostSharp.Extensibility.IMessageSink" />.
</summary>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.#ctor(System.String,PostSharp.Extensibility.IMessageDispenser)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.MessageSource" /> backed by a <see cref="T:PostSharp.Extensibility.IMessageDispenser" />.
</summary>
<param name="source">Name of the component emitting. the messages.</param>
<param name="messageDispenser">The <see cref="T:PostSharp.Extensibility.IMessageDispenser" /> that will be used to
retrieve message texts.</param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.#ctor(System.String,System.Resources.ResourceManager)">
<summary>
Instantiates a <see cref="T:PostSharp.Extensibility.MessageSource" /> backed by a <see cref="T:System.Resources.ResourceManager" />.
</summary>
<param name="source">Source name.</param>
<param name="resourceManager">The <see cref="T:System.Resources.ResourceManager" />.</param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.CreateMessage(PostSharp.Extensibility.SeverityType,System.String,System.Object[],System.String,System.Int32,System.Int32,System.Exception)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Extensibility.MessageSource.CreateMessage(PostSharp.Extensibility.SeverityType,System.String,System.Object[],System.String,System.Int32,System.Int32,System.Exception)</parameter>
</include>
</markup>
</summary>
<param name="severity"></param>
<param name="messageId"></param>
<param name="arguments"></param>
<param name="locationFile"></param>
<param name="locationLine"></param>
<param name="locationColumn"></param>
<param name="innerException"></param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Extensibility.MessageSource.CreateMessage(PostSharp.Extensibility.SeverityType,System.String,System.Object[],System.String,System.Int32,System.Int32,System.Exception)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.CreateMessage(PostSharp.MessageLocation,PostSharp.Extensibility.SeverityType,System.String,System.Exception,System.Object[])">
<summary>
Creates a <see cref="T:PostSharp.Extensibility.Message" /> from the current <see cref="T:PostSharp.Extensibility.MessageSource" />.
</summary>
<param name="location">Location of the source code artifact causing the message.</param>
<param name="severity">Severity.</param>
<param name="messageId">Message identifier (resolved by the current <see cref="T:PostSharp.Extensibility.MessageSource" />).</param>
<param name="innerException">Exception causing the message, or <c>null</c>.</param>
<param name="arguments">Arguments of the message text.</param>
<returns>A <see cref="T:PostSharp.Extensibility.Message" />.</returns>
</member>
<member name="P:PostSharp.Extensibility.MessageSource.MessageSink">
<summary>
Gets the current message sink.
</summary>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.Message)">
<summary>
Writes a message to the sink.
</summary>
<param name="message">A message.</param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.SeverityType,System.String,System.Object[])">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.SeverityType,System.String,System.Object[])</parameter>
</include>
</markup>
</summary>
<param name="severity"></param>
<param name="messageId"></param>
<param name="arguments"></param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.SeverityType,System.String,System.Object[],PostSharp.Reflection.SymbolSequencePoint)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.SeverityType,System.String,System.Object[],PostSharp.Reflection.SymbolSequencePoint)</parameter>
</include>
</markup>
</summary>
<param name="severity"></param>
<param name="messageId"></param>
<param name="arguments"></param>
<param name="symbolSequencePoint"></param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.SeverityType,System.String,System.Object[],System.String)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.SeverityType,System.String,System.Object[],System.String)</parameter>
</include>
</markup>
</summary>
<param name="severity"></param>
<param name="messageId"></param>
<param name="arguments"></param>
<param name="locationFile"></param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.SeverityType,System.String,System.Object[],System.String,System.Int32)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.SeverityType,System.String,System.Object[],System.String,System.Int32)</parameter>
</include>
</markup>
</summary>
<param name="severity"></param>
<param name="messageId"></param>
<param name="arguments"></param>
<param name="locationFile"></param>
<param name="locationLine"></param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.SeverityType,System.String,System.Object[],System.String,System.Int32,System.Int32)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.SeverityType,System.String,System.Object[],System.String,System.Int32,System.Int32)</parameter>
</include>
</markup>
</summary>
<param name="severity"></param>
<param name="messageId"></param>
<param name="arguments"></param>
<param name="locationFile"></param>
<param name="locationLine"></param>
<param name="locationColumn"></param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.SeverityType,System.String,System.Object[],System.String,System.Int32,System.Int32,System.Exception)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Extensibility.MessageSource.Write(PostSharp.Extensibility.SeverityType,System.String,System.Object[],System.String,System.Int32,System.Int32,System.Exception)</parameter>
</include>
</markup>
</summary>
<param name="severity"></param>
<param name="messageId"></param>
<param name="arguments"></param>
<param name="locationFile"></param>
<param name="locationLine"></param>
<param name="locationColumn"></param>
<param name="innerException"></param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.Write(PostSharp.MessageLocation,PostSharp.Extensibility.SeverityType,System.String,System.Exception,System.Object[])">
<summary>
Emits a <see cref="T:PostSharp.Extensibility.Message" /> and specifies an inner <see cref="T:System.Exception" />.
</summary>
<param name="location">Location of the source code artifact that caused the message.</param>
<param name="severity">Message severity (fatal error, error, info, debug).</param>
<param name="messageId">Identifier of the message type.</param>
<param name="arguments">Array of arguments used to format the message text,
or <c>null</c> if this message has no argument.</param>
<param name="innerException">The <see cref="T:System.Exception" /> that caused this message,
or <c>null</c> if this message was not caused by an
exception.</param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.Write(PostSharp.MessageLocation,PostSharp.Extensibility.SeverityType,System.String,System.Object[])">
<summary>
Emits a <see cref="T:PostSharp.Extensibility.Message" />.
</summary>
<param name="location">Location of the source code artifact that caused the message.</param>
<param name="severity">Message severity (fatal error, error, info, debug).</param>
<param name="messageId">Identifier of the message type.</param>
<param name="arguments">Array of arguments used to format the message text,
or <c>null</c> if this message has no argument.</param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.Write(System.Reflection.Assembly,PostSharp.Extensibility.SeverityType,System.String,System.Object[])">
<summary>
Emits a <see cref="T:PostSharp.Extensibility.Message" />.
</summary>
<param name="codeElement">Source code artifact that caused the message.</param>
<param name="severity">Message severity (fatal error, error, info, debug).</param>
<param name="messageId">Identifier of the message type.</param>
<param name="arguments">Array of arguments used to format the message text,
or <c>null</c> if this message has no argument.</param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.Write(System.Reflection.MemberInfo,PostSharp.Extensibility.SeverityType,System.String,System.Object[])">
<summary>
Emits a <see cref="T:PostSharp.Extensibility.Message" />.
</summary>
<param name="codeElement">Source code artifact (<see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.EventInfo" />, <see cref="T:System.Reflection.PropertyInfo" />) that caused the message.</param>
<param name="severity">Message severity (fatal error, error, info, debug).</param>
<param name="messageId">Identifier of the message type.</param>
<param name="arguments">Array of arguments used to format the message text,
or <c>null</c> if this message has no argument.</param>
</member>
<member name="M:PostSharp.Extensibility.MessageSource.Write(System.Reflection.ParameterInfo,PostSharp.Extensibility.SeverityType,System.String,System.Object[])">
<summary>
Emits a <see cref="T:PostSharp.Extensibility.Message" />.
</summary>
<param name="codeElement">Source code artifact that caused the message.</param>
<param name="severity">Message severity (fatal error, error, info, debug).</param>
<param name="messageId">Identifier of the message type.</param>
<param name="arguments">Array of arguments used to format the message text,
or <c>null</c> if this message has no argument.</param>
</member>
<member name="T:PostSharp.Extensibility.MetricAttribute">
<summary>
Custom attribute that, when applied on an aspect, causes the aspect to increment some metric at build time.
</summary>
</member>
<member name="M:PostSharp.Extensibility.MetricAttribute.#ctor(System.String,System.Object)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.MetricAttribute" />.
</summary>
<param name="metricName">Metric name.</param>
<param name="operand">Metric operand.</param>
</member>
<member name="P:PostSharp.Extensibility.MetricAttribute.AllowImplementationMetrics">
<summary>
Determines whether the usage of features used by the target aspects must be instrumented.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MetricAttribute.MetricName">
<summary>
Gets the name of the metric.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MetricAttribute.Operand">
<summary>
Gets the operand of the metric.
</summary>
</member>
<member name="T:PostSharp.Extensibility.MulticastAttribute">
<summary>
Custom attribute that can be applied to multiple elements
using wildcards.
</summary>
</member>
<member name="M:PostSharp.Extensibility.MulticastAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Extensibility.MulticastAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeExclude">
<summary>
If true, indicates that this attribute <i>removes</i> all other instances of the
same attribute type from the set of elements defined by the current instance.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeInheritance">
<summary>
Determines whether this attribute is inherited
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributePriority">
<summary>
Gets or sets the priority of the current attribute in case that multiple
instances are defined on the same element (lower values are processed before).
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeReplace">
<summary>
Determines whether this attribute replaces other attributes found on the
target declarations.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeTargetAssemblies">
<summary>
Gets or sets the assemblies to which the current attribute apply.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeTargetElements">
<summary>
Gets or sets the kind of elements to which this custom attributes applies.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeTargetExternalMemberAttributes">
<summary>
Gets or sets the visibilities, scopes, virtualities, and implementation
of members to which this attribute applies, when the member is external to the current module.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeTargetExternalTypeAttributes">
<summary>
Gets or sets the visibilities of types to which this attribute applies,
when this type is external to the current module.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeTargetMemberAttributes">
<summary>
Gets or sets the visibilities, scopes, virtualities, and implementation
of members to which this attribute applies.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeTargetMembers">
<summary>
Gets or sets the expression specifying to which members
this instance applies.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeTargetParameterAttributes">
<summary>
Gets or sets the passing style (by value, <b>out</b> or <b>ref</b>)
of parameters to which this attribute applies.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeTargetParameters">
<summary>
Gets or sets the expression specifying to which parameters
this instance applies.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeTargetTypeAttributes">
<summary>
Gets or sets the visibilities of types to which this attribute applies.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttribute.AttributeTargetTypes">
<summary>
Gets or sets the expression specifying to which types
this instance applies.
</summary>
</member>
<member name="T:PostSharp.Extensibility.MulticastAttributes">
<summary>
Attributes of elements to which multicast custom attributes (<see cref="T:PostSharp.Extensibility.MulticastAttribute" />)
apply.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.Default">
<summary>
Specifies that the set of target attributes is inherited from
the parent custom attribute.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.Private">
<summary>
Private (visible inside the current type).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.Protected">
<summary>
Protected (visible inside derived types).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.Internal">
<summary>
Internal (visible inside the current assembly).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.InternalAndProtected">
<summary>
Internal <i>and</i> protected (visible inside derived types that are defined in the current assembly).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.InternalOrProtected">
<summary>
Internal <i>or</i> protected (visible inside all derived types and in the current assembly).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.Public">
<summary>
Public (visible everywhere).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.AnyVisibility">
<summary>
Any visibility.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.Static">
<summary>
Static scope.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.Instance">
<summary>
Instance scope.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.AnyScope">
<summary>
Any scope (<see cref="F:PostSharp.Extensibility.MulticastAttributes.Static" /> | <see cref="F:PostSharp.Extensibility.MulticastAttributes.Instance" />).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.Abstract">
<summary>
Abstract methods.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.NonAbstract">
<summary>
Concrete (non-abstract) methods.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.AnyAbstraction">
<summary>
Any abstraction (<see cref="F:PostSharp.Extensibility.MulticastAttributes.Abstract" /> | <see cref="F:PostSharp.Extensibility.MulticastAttributes.NonAbstract" />).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.Virtual">
<summary>
Virtual methods.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.NonVirtual">
<summary>
Non-virtual methods.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.AnyVirtuality">
<summary>
Any virtuality (<see cref="F:PostSharp.Extensibility.MulticastAttributes.Virtual" /> | <see cref="F:PostSharp.Extensibility.MulticastAttributes.NonVirtual" />).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.Managed">
<summary>
Managed code implementation.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.NonManaged">
<summary>
Non-managed code implementation (external or system).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.AnyImplementation">
<summary>
Any implementation (<see cref="F:PostSharp.Extensibility.MulticastAttributes.Managed" /> | <see cref="F:PostSharp.Extensibility.MulticastAttributes.NonManaged" />).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.Literal">
<summary>
Literal fields.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.NonLiteral">
<summary>
Non-literal fields.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.AnyLiterality">
<summary>
Any field literality (<see cref="F:PostSharp.Extensibility.MulticastAttributes.Literal" /> | <see cref="F:PostSharp.Extensibility.MulticastAttributes.NonLiteral" />).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.InParameter">
<summary>
Input parameters.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.CompilerGenerated">
<summary>
Compiler-generated code (for instance closure types of anonymous method, iterator type, ...).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.UserGenerated">
<summary>
User-generated code (anything expected <see cref="F:PostSharp.Extensibility.MulticastAttributes.CompilerGenerated" />).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.AnyGeneration">
<summary>
Any code generation (<see cref="F:PostSharp.Extensibility.MulticastAttributes.CompilerGenerated" /> | <see cref="F:PostSharp.Extensibility.MulticastAttributes.UserGenerated" />)l
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.OutParameter">
<summary>
Output (<b>out</b> in C#) parameters.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.RefParameter">
<summary>
Input/Output (<b>ref</b> in C#) parameters.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.AnyParameter">
<summary>
Any kind of parameter passing (<see cref="F:PostSharp.Extensibility.MulticastAttributes.InParameter" /> | <see cref="F:PostSharp.Extensibility.MulticastAttributes.OutParameter" /> | <see cref="F:PostSharp.Extensibility.MulticastAttributes.RefParameter" />).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastAttributes.All">
<summary>
All members.
</summary>
</member>
<member name="T:PostSharp.Extensibility.MulticastAttributeUsageAttribute">
<summary>
Custom attribute that determines the usage of a <see cref="T:PostSharp.Extensibility.MulticastAttribute" />.
</summary>
</member>
<member name="M:PostSharp.Extensibility.MulticastAttributeUsageAttribute.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.MulticastAttributeUsageAttribute" />.
</summary>
</member>
<member name="M:PostSharp.Extensibility.MulticastAttributeUsageAttribute.#ctor(PostSharp.Extensibility.MulticastTargets)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.MulticastAttributeUsageAttribute" />.
</summary>
<param name="validOn">Kinds of targets that instances of the related <see cref="T:PostSharp.Extensibility.MulticastAttribute" />
apply to.</param>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttributeUsageAttribute.AllowExternalAssemblies">
<summary>
Determines whether this attribute can be applied to declaration of external assemblies
(i.e. to other assemblies than the one in which the custom attribute is instantiated).
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttributeUsageAttribute.AllowMultiple">
<summary>
Determines whether many instances of the custom attribute are allowed on a single declaration.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttributeUsageAttribute.HideFromAspectBrowser">
<summary>
Determines whether instances of the target <see cref="T:PostSharp.Extensibility.MulticastAttribute" />
should be hidden from the Aspect Browser, in the Visual Studio extension.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttributeUsageAttribute.Inheritance">
<summary>
Determines whether the custom attribute in inherited along the lines of inheritance
of the target element.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttributeUsageAttribute.PersistMetaData">
<summary>
Determines whether the custom attribute should be persisted in metadata, so that
it would be available for <c>System.Reflection</c>.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttributeUsageAttribute.TargetExternalMemberAttributes">
<summary>
Gets or sets the attributes of the members (fields or methods) to which
the custom attribute can be applied, when the members are external to
the current module.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttributeUsageAttribute.TargetExternalTypeAttributes">
<summary>
Gets or sets the attributes of the types to which
the custom attribute can be applied, when the type is external to
the current module. If the custom attribute relates to
fields or methods, this property specifies which attributes
of the declaring type are acceptable.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttributeUsageAttribute.TargetMemberAttributes">
<summary>
Gets or sets the attributes of the members (fields or methods) to which
the custom attribute can be applied.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttributeUsageAttribute.TargetParameterAttributes">
<summary>
Gets or sets the attributes of the parameter to which
the custom attribute can be applied.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttributeUsageAttribute.TargetTypeAttributes">
<summary>
Gets or sets the attributes of the types to which
the custom attribute can be applied. If the custom attribute relates to
fields or methods, this property specifies which attributes
of the declaring type are acceptable.
</summary>
</member>
<member name="P:PostSharp.Extensibility.MulticastAttributeUsageAttribute.ValidOn">
<summary>
Gets the kinds of targets that instances of the related <see cref="T:PostSharp.Extensibility.MulticastAttribute" />
apply to.
</summary>
</member>
<member name="T:PostSharp.Extensibility.MulticastInheritance">
<summary>
Kind of inheritance of <see cref="T:PostSharp.Extensibility.MulticastAttribute" />.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastInheritance.None">
<summary>
No inheritance.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastInheritance.Strict">
<summary>
The instance is inherited to children of the original element,
but multicasting is not applied to members of children.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastInheritance.Multicast">
<summary>
The instance is inherited to children of the original element
and multicasting is applied to members of children.
</summary>
</member>
<member name="T:PostSharp.Extensibility.MulticastTargets">
<summary>
Kinds of targets to which multicast custom attributes (<see cref="T:PostSharp.Extensibility.MulticastAttribute" />)
can apply.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.Default">
<summary>
Specifies that the set of target elements is inherited from
the parent custom attribute.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.Class">
<summary>
Class.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.Struct">
<summary>
Structure.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.Enum">
<summary>
Enumeration.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.Delegate">
<summary>
Delegate.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.Interface">
<summary>
Interface.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.AnyType">
<summary>
Any type (<see cref="F:PostSharp.Extensibility.MulticastTargets.Class" />, <see cref="F:PostSharp.Extensibility.MulticastTargets.Struct" />, <see cref="F:PostSharp.Extensibility.MulticastTargets.Enum" />,
<see cref="F:PostSharp.Extensibility.MulticastTargets.Delegate" /> or <see cref="F:PostSharp.Extensibility.MulticastTargets.Interface" />).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.Field">
<summary>
Field.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.Method">
<summary>
Method (but not constructor).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.InstanceConstructor">
<summary>
Instance constructor.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.StaticConstructor">
<summary>
Static constructor.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.Property">
<summary>
Property (but not methods inside the property).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.Event">
<summary>
Event (but not methods inside the event).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.AnyMember">
<summary>
Any member (<see cref="F:PostSharp.Extensibility.MulticastTargets.Field" />, <see cref="F:PostSharp.Extensibility.MulticastTargets.Method" />, <see cref="F:PostSharp.Extensibility.MulticastTargets.InstanceConstructor" />,
<see cref="F:PostSharp.Extensibility.MulticastTargets.StaticConstructor" />,
<see cref="F:PostSharp.Extensibility.MulticastTargets.Property" />, <see cref="F:PostSharp.Extensibility.MulticastTargets.Event" />).
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.Assembly">
<summary>
Assembly.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.Parameter">
<summary>
Method or property parameter.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.ReturnValue">
<summary>
Method or property return value.
</summary>
</member>
<member name="F:PostSharp.Extensibility.MulticastTargets.All">
<summary>
All element kinds.
</summary>
</member>
<member name="T:PostSharp.Extensibility.PostSharpEnvironment">
<summary>
Provides access to the current <c>PostSharp</c> environment (<see cref="T:PostSharp.Extensibility.IPostSharpEnvironment" />).
</summary>
</member>
<member name="P:PostSharp.Extensibility.PostSharpEnvironment.Current">
<summary>
Gets the current <c>PostSharp</c> environment, or <c>null</c>
if the <c>PostSharp</c> Platform is not loaded in the current
context.
</summary>
</member>
<member name="P:PostSharp.Extensibility.PostSharpEnvironment.CurrentProject">
<summary>
Gets the current PostSharp project.
</summary>
</member>
<member name="P:PostSharp.Extensibility.PostSharpEnvironment.IsPostSharpRunning">
<summary>
Determines whether the <c>PostSharp</c> Platform is currently loaded.
</summary>
</member>
<member name="T:PostSharp.Extensibility.PostSharpTrace">
<summary>
Provides tracing functionality. An instance of the <see cref="T:PostSharp.Extensibility.PostSharpTrace" /> type
implements a trace sink.
</summary>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.#ctor(System.String)">
<summary>
Initialize a new <see cref="T:PostSharp.Extensibility.PostSharpTrace" /> sink.
</summary>
<param name="category">Category of messages.</param>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.EnableCategory(PostSharp.Extensibility.PostSharpTrace)">
<summary>
Enables a trace category known by its object.
</summary>
<param name="category">A <see cref="T:PostSharp.Extensibility.PostSharpTrace" /> object.</param>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.EnableCategory(System.String)">
<summary>
Enables a trace category known by its name.
</summary>
<param name="category">The category name.</param>
</member>
<member name="P:PostSharp.Extensibility.PostSharpTrace.Enabled">
<summary>
Determines whether the current trace sink is enabled.
</summary>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.Write(System.String)">
<summary>
Writes a message to the current sink without formatting parameter.
</summary>
<param name="message">Message.</param>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.Write(System.String,System.Object)">
<summary>
Writes a message to the current sink with a single formatting parameter.
</summary>
<param name="format">Message formatting string.</param>
<param name="arg0">The first formatting parameter.</param>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.Write(System.String,System.Object,System.Object)">
<summary>
Writes a message to the current sink with two formatting parameters.
</summary>
<param name="format">Message formatting string.</param>
<param name="arg0">The first formatting parameter.</param>
<param name="arg1">The second formatting parameter.</param>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.Write(System.String,System.Object,System.Object,System.Object)">
<summary>
Writes a message to the current sink with three formatting parameters.
</summary>
<param name="format">Message formatting string.</param>
<param name="arg0">The first formatting parameter.</param>
<param name="arg1">The second formatting parameter.</param>
<param name="arg2">The third formatting parameter.</param>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.Write(System.String,System.Object[])">
<summary>
Writes a message to the current sink with many formatting parameters.
</summary>
<param name="format">Message formatting string.</param>
<param name="parameters">Formatting parameters.</param>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.WriteLine(System.String)">
<summary>
Writes a message to the current sink without parameter,
and issues a line break.
</summary>
<param name="format">Message formatting string.</param>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.WriteLine(System.String,System.Object)">
<summary>
Writes a message to the current sink with a single formatting parameter,
and issues a line break.
</summary>
<param name="format">Message formatting string.</param>
<param name="arg0">The first formatting parameter.</param>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.WriteLine(System.String,System.Object,System.Object)">
<summary>
Writes a message to the current sink with two formatting parameters,
and issues a line break.
</summary>
<param name="format">Message formatting string.</param>
<param name="arg0">The first formatting parameter.</param>
<param name="arg1">The second formatting parameter.</param>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.WriteLine(System.String,System.Object,System.Object,System.Object)">
<summary>
Writes a message to the current sink with three formatting parameters,
and issues a line break.
</summary>
<param name="format">Message formatting string.</param>
<param name="arg0">The first formatting parameter.</param>
<param name="arg1">The second formatting parameter.</param>
<param name="arg2">The third formatting parameter.</param>
</member>
<member name="M:PostSharp.Extensibility.PostSharpTrace.WriteLine(System.String,System.Object[])">
<summary>
Writes a message to the current sink with many formatting parameters, and issues a line break.
</summary>
<param name="format">Message formatting string.</param>
<param name="parameters">Formatting parameters.</param>
</member>
<member name="T:PostSharp.Extensibility.ProjectExtensionElement">
<summary>
Represents a custom element (or section) in the XML project type.
</summary>
</member>
<member name="P:PostSharp.Extensibility.ProjectExtensionElement.FileName">
<summary>
Gets the full path of the file in which the element is defined.
</summary>
</member>
<member name="P:PostSharp.Extensibility.ProjectExtensionElement.Xml">
<summary>
Gets the text representation of the <see cref="P:PostSharp.Extensibility.ProjectExtensionElement.XmlElement" /> materializing the project extension.
</summary>
</member>
<member name="P:PostSharp.Extensibility.ProjectExtensionElement.XmlElement">
<summary>
Gets the <see cref="P:PostSharp.Extensibility.ProjectExtensionElement.XmlElement" /> materializing the project extension.
</summary>
</member>
<member name="T:PostSharp.Extensibility.ProjectResource">
<summary>
Represents an element of a resource section, i.e. a named object deserialized from XML.
</summary>
</member>
<member name="M:PostSharp.Extensibility.ProjectResource.#ctor(System.String,System.Object)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.ProjectResource" />.
</summary>
<param name="name">Resource name.</param>
<param name="value">Resource value.</param>
</member>
<member name="P:PostSharp.Extensibility.ProjectResource.Name">
<summary>
Gets the name of the resource section, i.e. the name of the XML element containing the resource.
</summary>
</member>
<member name="P:PostSharp.Extensibility.ProjectResource.Value">
<summary>
Gets the resource value, i.e. the object that has been constructed by deserializing the XML element.
</summary>
</member>
<member name="T:PostSharp.Extensibility.RequirePostSharpAttribute">
<summary>
Custom attribute that, when applied on another custom attribute (a class derived
from <see cref="T:System.Attribute" />), means that assemblies with elements
annotated with that custom attribute should be processed by <c>PostSharp</c>.
</summary>
</member>
<member name="M:PostSharp.Extensibility.RequirePostSharpAttribute.#ctor(System.String,System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Extensibility.RequirePostSharpAttribute" />.
</summary>
<param name="plugIn">Name of the required plug-in (file name without extension).</param>
<param name="task">Name of the required task (should be defined in <paramref name="plugIn" />).</param>
</member>
<member name="P:PostSharp.Extensibility.RequirePostSharpAttribute.AssemblyReferenceOnly">
<summary>
Determines whether the requirement should apply only to assemblies referencing the declaration to
which the custom attribute is applied. If <c>true</c>, the requirement will not apply to the assembly
where the custom attribute is used.
</summary>
</member>
<member name="P:PostSharp.Extensibility.RequirePostSharpAttribute.PlugIn">
<summary>
Gets the name of the required plug-in (file name without the extension).
</summary>
</member>
<member name="P:PostSharp.Extensibility.RequirePostSharpAttribute.Task">
<summary>
Gets the name of the required task (should be defined in <see cref="P:PostSharp.Extensibility.RequirePostSharpAttribute.PlugIn" />).
</summary>
</member>
<member name="T:PostSharp.Extensibility.RequireReflectionWrapperAttribute">
<summary>
Custom attribute that, when applied on a type, specifies that all build-time semantics of this type
require reflection wrappers to be passed instead of real reflection objects.
</summary>
</member>
<member name="M:PostSharp.Extensibility.RequireReflectionWrapperAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Extensibility.RequireReflectionWrapperAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Extensibility.SeverityType">
<summary>
Types of message severities.
</summary>
</member>
<member name="F:PostSharp.Extensibility.SeverityType.Debug">
<summary>
Debugging information (typically trace).
</summary>
</member>
<member name="F:PostSharp.Extensibility.SeverityType.Verbose">
<summary>
Verbose (lowly important information).
</summary>
</member>
<member name="F:PostSharp.Extensibility.SeverityType.Info">
<summary>
Information.
</summary>
</member>
<member name="F:PostSharp.Extensibility.SeverityType.ImportantInfo">
<summary>
Important information.
</summary>
</member>
<member name="F:PostSharp.Extensibility.SeverityType.CommandLine">
<summary>
Command line.
</summary>
</member>
<member name="F:PostSharp.Extensibility.SeverityType.Warning">
<summary>
Warning.
</summary>
</member>
<member name="F:PostSharp.Extensibility.SeverityType.Error">
<summary>
Error.
</summary>
</member>
<member name="F:PostSharp.Extensibility.SeverityType.Fatal">
<summary>
Fatal error.
</summary>
</member>
<member name="F:PostSharp.Extensibility.SeverityType.None">
<summary>
No message.
</summary>
</member>
<member name="T:PostSharp.Extensibility.SuppressAnnotationValidationAttribute">
<summary>
Instructs PostSharp that the validation of <see cref="T:PostSharp.Extensibility.IValidableAnnotation" /> is done by another component, and should
not be processed by the default component.
</summary>
</member>
<member name="M:PostSharp.Extensibility.SuppressAnnotationValidationAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Extensibility.SuppressAnnotationValidationAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Extensibility.TargetFrameworkFamily">
<summary>
Represents a variant of family (variant) of the .NET Framework, e.g. <see cref="F:PostSharp.Extensibility.TargetFrameworkFamily.NetCore" />, <see cref="F:PostSharp.Extensibility.TargetFrameworkFamily.NetFramework" />,
<see cref="F:PostSharp.Extensibility.TargetFrameworkFamily.Silverlight" /> or <see cref="F:PostSharp.Extensibility.TargetFrameworkFamily.NetPortable" />.
</summary>
</member>
<member name="M:PostSharp.Extensibility.TargetFrameworkFamily.Equals(PostSharp.Extensibility.TargetFrameworkFamily)">
<summary>Indicates whether the current object is equal to another object of the same type.</summary>
<param name="other">An object to compare with this object.</param>
<returns>true if the current object is equal to the <paramref name="other" /> parameter; otherwise, false.</returns>
</member>
<member name="M:PostSharp.Extensibility.TargetFrameworkFamily.Equals(System.Object)">
<summary>Indicates whether this instance and a specified object are equal.</summary>
<param name="obj">The object to compare with the current instance. </param>
<returns>true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false. </returns>
</member>
<member name="M:PostSharp.Extensibility.TargetFrameworkFamily.GetHashCode">
<summary>Returns the hash code for this instance.</summary>
<returns>A 32-bit signed integer that is the hash code for this instance.</returns>
</member>
<member name="P:PostSharp.Extensibility.TargetFrameworkFamily.IsNull">
<summary>
Determines whether the current object represents a null instance.
</summary>
</member>
<member name="F:PostSharp.Extensibility.TargetFrameworkFamily.MonoAndroid">
<summary>
Instance of <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" /> representing MonoAndroid.
</summary>
</member>
<member name="F:PostSharp.Extensibility.TargetFrameworkFamily.MonoTouch">
<summary>
Instance of <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" /> representing MonoTouch.
</summary>
</member>
<member name="F:PostSharp.Extensibility.TargetFrameworkFamily.NetCore">
<summary>
Instance of <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" /> representing .NET Framework for Windows Store.
</summary>
</member>
<member name="F:PostSharp.Extensibility.TargetFrameworkFamily.NetFramework">
<summary>
Instance of <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" /> representing the full .NET Framework.
</summary>
</member>
<member name="F:PostSharp.Extensibility.TargetFrameworkFamily.NetPortable">
<summary>
Instance of <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" /> representing .NET Portable Class Library.
</summary>
</member>
<member name="M:PostSharp.Extensibility.TargetFrameworkFamily.op_Equality(PostSharp.Extensibility.TargetFrameworkFamily,PostSharp.Extensibility.TargetFrameworkFamily)">
<summary>
Determines whether two <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" /> instances are equal.
</summary>
<param name="x">A <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" />.</param>
<param name="y">A <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" />.</param>
<returns>
<c>true</c> if <paramref name="x" /> and <paramref name="y" /> are equal, otherwise <c>false</c>.</returns>
</member>
<member name="M:PostSharp.Extensibility.TargetFrameworkFamily.op_Inequality(PostSharp.Extensibility.TargetFrameworkFamily,PostSharp.Extensibility.TargetFrameworkFamily)">
<summary>
Determines whether two <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" /> instances are different.
</summary>
<param name="x">A <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" />.</param>
<param name="y">A <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" />.</param>
<returns>
<c>true</c> if <paramref name="x" /> and <paramref name="y" /> are different, otherwise <c>false</c></returns>
</member>
<member name="F:PostSharp.Extensibility.TargetFrameworkFamily.Silverlight">
<summary>
Instance of <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" /> representing Silverlight.
</summary>
</member>
<member name="P:PostSharp.Extensibility.TargetFrameworkFamily.Value">
<summary>
Gets the string identity of the current object.
</summary>
</member>
<member name="F:PostSharp.Extensibility.TargetFrameworkFamily.WindowsPhone">
<summary>
Instance of <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" /> representing Windows Phone (Silverlight).
</summary>
</member>
<member name="F:PostSharp.Extensibility.TargetFrameworkFamily.Xamarin_iOS">
<summary>
Instance of <see cref="T:PostSharp.Extensibility.TargetFrameworkFamily" /> representing Xamarin.iOS.
</summary>
</member>
<member name="T:PostSharp.Reflection.CodeReferenceKind">
<summary>
Kinds of code references (<see cref="T:PostSharp.Reflection.ICodeReference" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.CodeReferenceKind.None">
<summary>
No code reference.
</summary>
</member>
<member name="F:PostSharp.Reflection.CodeReferenceKind.TypeInheritance">
<summary>
Type inheritance. The base type is the <see cref="P:PostSharp.Reflection.ICodeReference.ReferencedDeclaration" />;
the child type is the <see cref="P:PostSharp.Reflection.ICodeReference.ReferencingDeclaration" />.
See <see cref="T:PostSharp.Reflection.TypeInheritanceCodeReference" />.
</summary>
</member>
<member name="F:PostSharp.Reflection.CodeReferenceKind.MemberType">
<summary>
Member type (field or property type, method return type, or parameter type).
The member type is the <see cref="P:PostSharp.Reflection.ICodeReference.ReferencedDeclaration" />.
See <see cref="T:PostSharp.Reflection.MemberTypeCodeReference" />.
</summary>
</member>
<member name="F:PostSharp.Reflection.CodeReferenceKind.MethodUsage">
<summary>
Operand of an instruction in a method body. The <see cref="P:PostSharp.Reflection.ICodeReference.ReferencingDeclaration" />
is the method. See <see cref="T:PostSharp.Reflection.MethodUsageCodeReference" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.CustomAttributeInstance">
<summary>
Instance of a custom attribute on a target declaration.
</summary>
</member>
<member name="P:PostSharp.Reflection.CustomAttributeInstance.Attribute">
<summary>
Gets the custom attribute.
</summary>
</member>
<member name="P:PostSharp.Reflection.CustomAttributeInstance.Construction">
<summary>
Gets the <see cref="T:PostSharp.Reflection.ObjectConstruction" /> (including given constructor
arguments and named arguments) used to construct
the <see cref="P:PostSharp.Reflection.CustomAttributeInstance.Attribute" />.
</summary>
</member>
<member name="P:PostSharp.Reflection.CustomAttributeInstance.Target">
<summary>
Gets the declaration on which the custom attribute is defined.
</summary>
</member>
<member name="T:PostSharp.Reflection.CustomReflectionBinder">
<summary>
Custom implementation of a reflection <see cref="T:System.Reflection.Binder" /> that select
methods based on exact matches using the <see cref="T:PostSharp.Reflection.ReflectionTypeComparer" />.
</summary>
</member>
<member name="M:PostSharp.Reflection.CustomReflectionBinder.BindToField(System.Reflection.BindingFlags,System.Reflection.FieldInfo[],System.Object,System.Globalization.CultureInfo)">
<summary>Selects a field from the given set of fields, based on the specified criteria.</summary>
<param name="bindingAttr">A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values. </param>
<param name="match">The set of fields that are candidates for matching. For example, when a <see cref="T:System.Reflection.Binder" /> object is used by <see cref="Overload:System.Type.InvokeMember" />, this parameter specifies the set of fields that reflection has determined to be possible matches, typically because they have the correct member name. The default implementation provided by <see cref="P:System.Type.DefaultBinder" /> changes the order of this array.</param>
<param name="value">The field value used to locate a matching field. </param>
<param name="culture">An instance of <see cref="T:System.Globalization.CultureInfo" /> that is used to control the coercion of data types, in binder implementations that coerce types. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used.Note   For example, if a binder implementation allows coercion of string values to numeric types, this parameter is necessary to convert a String that represents 1000 to a Double value, because 1000 is represented differently by different cultures. The default binder does not do such string coercions.</param>
<param name="bindingFlags">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>bindingFlags</parameter>
<parameter>M:PostSharp.Reflection.CustomReflectionBinder.BindToField(System.Reflection.BindingFlags,System.Reflection.FieldInfo[],System.Object,System.Globalization.CultureInfo)</parameter>
</include>
</markup>
</param>
<returns>The matching field. </returns>
<exception cref="T:System.Reflection.AmbiguousMatchException">For the default binder, <paramref name="bindingAttr" /> includes <see cref="F:System.Reflection.BindingFlags.SetField" />, and <paramref name="match" /> contains multiple fields that are equally good matches for <paramref name="value" />. For example, <paramref name="value" /> contains a MyClass object that implements the IMyClass interface, and <paramref name="match" /> contains a field of type MyClass and a field of type IMyClass. </exception>
<exception cref="T:System.MissingFieldException">For the default binder, <paramref name="bindingAttr" /> includes <see cref="F:System.Reflection.BindingFlags.SetField" />, and <paramref name="match" /> contains no fields that can accept <paramref name="value" />.</exception>
<exception cref="T:System.NullReferenceException">For the default binder, <paramref name="bindingAttr" /> includes <see cref="F:System.Reflection.BindingFlags.SetField" />, and <paramref name="match" /> is null or an empty array.-or-<paramref name="bindingAttr" /> includes <see cref="F:System.Reflection.BindingFlags.SetField" />, and <paramref name="value" /> is null.</exception>
</member>
<member name="M:PostSharp.Reflection.CustomReflectionBinder.BindToMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Object[]@,System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[],System.Object@)">
<summary>Selects a method to invoke from the given set of methods, based on the supplied arguments.</summary>
<param name="bindingAttr">A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values. </param>
<param name="match">The set of methods that are candidates for matching. For example, when a <see cref="T:System.Reflection.Binder" /> object is used by <see cref="Overload:System.Type.InvokeMember" />, this parameter specifies the set of methods that reflection has determined to be possible matches, typically because they have the correct member name. The default implementation provided by <see cref="P:System.Type.DefaultBinder" /> changes the order of this array.</param>
<param name="args">The arguments that are passed in. The binder can change the order of the arguments in this array; for example, the default binder changes the order of arguments if the <paramref name="names" /> parameter is used to specify an order other than positional order. If a binder implementation coerces argument types, the types and values of the arguments can be changed as well. </param>
<param name="modifiers">An array of parameter modifiers that enable binding to work with parameter signatures in which the types have been modified. The default binder implementation does not use this parameter.</param>
<param name="culture">An instance of <see cref="T:System.Globalization.CultureInfo" /> that is used to control the coercion of data types, in binder implementations that coerce types. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. Note   For example, if a binder implementation allows coercion of string values to numeric types, this parameter is necessary to convert a String that represents 1000 to a Double value, because 1000 is represented differently by different cultures. The default binder does not do such string coercions.</param>
<param name="names">The parameter names, if parameter names are to be considered when matching, or null if arguments are to be treated as purely positional. For example, parameter names must be used if arguments are not supplied in positional order. </param>
<param name="state">After the method returns, <paramref name="state" /> contains a binder-provided object that keeps track of argument reordering. The binder creates this object, and the binder is the sole consumer of this object. If <paramref name="state" /> is not null when BindToMethod returns, you must pass <paramref name="state" /> to the <see cref="M:System.Reflection.Binder.ReorderArgumentArray(System.Object[]@,System.Object)" /> method if you want to restore <paramref name="args" /> to its original order, for example, so that you can retrieve the values of ref parameters (ByRef parameters in Visual Basic). </param>
<param name="bindingFlags">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>bindingFlags</parameter>
<parameter>M:PostSharp.Reflection.CustomReflectionBinder.BindToMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Object[]@,System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[],System.Object@)</parameter>
</include>
</markup>
</param>
<returns>The matching method.</returns>
<exception cref="T:System.Reflection.AmbiguousMatchException">For the default binder, <paramref name="match" /> contains multiple methods that are equally good matches for <paramref name="args" />. For example, <paramref name="args" /> contains a MyClass object that implements the IMyClass interface, and <paramref name="match" /> contains a method that takes MyClass and a method that takes IMyClass. </exception>
<exception cref="T:System.MissingMethodException">For the default binder, <paramref name="match" /> contains no methods that can accept the arguments supplied in <paramref name="args" />.</exception>
<exception cref="T:System.ArgumentException">For the default binder, <paramref name="match" /> is null or an empty array.</exception>
</member>
<member name="M:PostSharp.Reflection.CustomReflectionBinder.ChangeType(System.Object,System.Type,System.Globalization.CultureInfo)">
<summary>Changes the type of the given Object to the given Type.</summary>
<param name="value">The object to change into a new Type. </param>
<param name="type">The new Type that <paramref name="value" /> will become. </param>
<param name="culture">An instance of <see cref="T:System.Globalization.CultureInfo" /> that is used to control the coercion of data types. If <paramref name="culture" /> is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used.Note   For example, this parameter is necessary to convert a String that represents 1000 to a Double value, because 1000 is represented differently by different cultures. </param>
<returns>An object that contains the given value as the new type. </returns>
</member>
<member name="F:PostSharp.Reflection.CustomReflectionBinder.Instance">
<summary>
Singleton instance.
</summary>
</member>
<member name="M:PostSharp.Reflection.CustomReflectionBinder.ReorderArgumentArray(System.Object[]@,System.Object)">
<summary>Upon returning from <see cref="M:System.Reflection.Binder.BindToMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Object[]@,System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[],System.Object@)" />, restores the <paramref name="args" /> argument to what it was when it came from BindToMethod.</summary>
<param name="args">The actual arguments that are passed in. Both the types and values of the arguments can be changed. </param>
<param name="state">A binder-provided object that keeps track of argument reordering. </param>
</member>
<member name="M:PostSharp.Reflection.CustomReflectionBinder.SelectMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[])">
<summary>Selects a method from the given set of methods, based on the argument type.</summary>
<param name="bindingAttr">A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values. </param>
<param name="match">The set of methods that are candidates for matching. For example, when a <see cref="T:System.Reflection.Binder" /> object is used by <see cref="Overload:System.Type.InvokeMember" />, this parameter specifies the set of methods that reflection has determined to be possible matches, typically because they have the correct member name. The default implementation provided by <see cref="P:System.Type.DefaultBinder" /> changes the order of this array.</param>
<param name="types">The parameter types used to locate a matching method. </param>
<param name="modifiers">An array of parameter modifiers that enable binding to work with parameter signatures in which the types have been modified. </param>
<param name="bindingFlags">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>bindingFlags</parameter>
<parameter>M:PostSharp.Reflection.CustomReflectionBinder.SelectMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[])</parameter>
</include>
</markup>
</param>
<returns>The matching method, if found; otherwise, null.</returns>
<exception cref="T:System.Reflection.AmbiguousMatchException">For the default binder, <paramref name="match" /> contains multiple methods that are equally good matches for the parameter types described by <paramref name="types" />. For example, the array in <paramref name="types" /> contains a <see cref="T:System.Type" /> object for MyClass and the array in <paramref name="match" /> contains a method that takes a base class of MyClass and a method that takes an interface that MyClass implements. </exception>
<exception cref="T:System.ArgumentException">For the default binder, <paramref name="match" /> is null or an empty array.-or-An element of <paramref name="types" /> derives from <see cref="T:System.Type" />, but is not of type RuntimeType.</exception>
</member>
<member name="M:PostSharp.Reflection.CustomReflectionBinder.SelectProperty(System.Reflection.BindingFlags,System.Reflection.PropertyInfo[],System.Type,System.Type[],System.Reflection.ParameterModifier[])">
<summary>Selects a property from the given set of properties, based on the specified criteria.</summary>
<param name="bindingAttr">A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values. </param>
<param name="match">The set of properties that are candidates for matching. For example, when a <see cref="T:System.Reflection.Binder" /> object is used by <see cref="Overload:System.Type.InvokeMember" />, this parameter specifies the set of properties that reflection has determined to be possible matches, typically because they have the correct member name. The default implementation provided by <see cref="P:System.Type.DefaultBinder" /> changes the order of this array.</param>
<param name="returnType">The return value the matching property must have. </param>
<param name="indexes">The index types of the property being searched for. Used for index properties such as the indexer for a class. </param>
<param name="modifiers">An array of parameter modifiers that enable binding to work with parameter signatures in which the types have been modified. </param>
<param name="bindingFlags">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>bindingFlags</parameter>
<parameter>M:PostSharp.Reflection.CustomReflectionBinder.SelectProperty(System.Reflection.BindingFlags,System.Reflection.PropertyInfo[],System.Type,System.Type[],System.Reflection.ParameterModifier[])</parameter>
</include>
</markup>
</param>
<returns>The matching property.</returns>
<exception cref="T:System.Reflection.AmbiguousMatchException">For the default binder, <paramref name="match" /> contains multiple properties that are equally good matches for <paramref name="returnType" /> and <paramref name="indexes" />. </exception>
<exception cref="T:System.ArgumentException">For the default binder, <paramref name="match" /> is null or an empty array. </exception>
</member>
<member name="T:PostSharp.Reflection.DeclarationIdentifier">
<summary>
Encapsulates a unique identifier of a declaration. The identifier does not contain the kind of declaration. Different declarations of different kinds can have the same identifier.
</summary>
</member>
<member name="P:PostSharp.Reflection.DeclarationIdentifier.AssemblyId">
<summary>
Gets a 29-bit of the name of the assembly containing the declaration represented by the current <see cref="T:PostSharp.Reflection.DeclarationIdentifier" />.
</summary>
</member>
<member name="M:PostSharp.Reflection.DeclarationIdentifier.Equals(PostSharp.Reflection.DeclarationIdentifier)">
<summary>Indicates whether the current object is equal to another object of the same type.</summary>
<param name="other">An object to compare with this object.</param>
<returns>true if the current object is equal to the <paramref name="other" /> parameter; otherwise, false.</returns>
</member>
<member name="M:PostSharp.Reflection.DeclarationIdentifier.Equals(System.Object)">
<summary>Indicates whether this instance and a specified object are equal.</summary>
<param name="obj">The object to compare with the current instance. </param>
<returns>true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false. </returns>
</member>
<member name="M:PostSharp.Reflection.DeclarationIdentifier.GetDeclarationIdentifier(System.Reflection.MemberInfo)">
<summary>
Gets the <see cref="T:PostSharp.Reflection.DeclarationIdentifier" /> for a given declaration.
</summary>
<param name="declaration">A <see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.EventInfo" /> or <see cref="T:System.Reflection.PropertyInfo" />.</param>
<returns>A <see cref="T:PostSharp.Reflection.DeclarationIdentifier" /> that identifies <paramref name="declaration" />.</returns>
</member>
<member name="M:PostSharp.Reflection.DeclarationIdentifier.GetDeclaringTypeIdentifier">
<summary>
Gets the <see cref="T:PostSharp.Reflection.DeclarationIdentifier" /> that represents the declaring type of the declaration represented by the current <see cref="T:PostSharp.Reflection.DeclarationIdentifier" />.
</summary>
<returns>The <see cref="T:PostSharp.Reflection.DeclarationIdentifier" /> that represents the declaring type of the declaration represented by the current <see cref="T:PostSharp.Reflection.DeclarationIdentifier" />.
If the current <see cref="T:PostSharp.Reflection.DeclarationIdentifier" /> already represents a type, this method returns the current <see cref="T:PostSharp.Reflection.DeclarationIdentifier" />.
</returns>
</member>
<member name="M:PostSharp.Reflection.DeclarationIdentifier.GetHashCode">
<summary>Returns the hash code for this instance.</summary>
<returns>A 32-bit signed integer that is the hash code for this instance.</returns>
</member>
<member name="P:PostSharp.Reflection.DeclarationIdentifier.IsNull">
<summary>
Determines whether the current <see cref="T:PostSharp.Reflection.DeclarationIdentifier" /> is null.
</summary>
</member>
<member name="F:PostSharp.Reflection.DeclarationIdentifier.MaxMemberIndex">
<summary>
Maximum number of the same kind in the same type supported by the <see cref="T:PostSharp.Reflection.DeclarationIdentifier" /> class.
</summary>
</member>
<member name="F:PostSharp.Reflection.DeclarationIdentifier.MaxTypeIndex">
<summary>
Maximum number of types per assembly supported by the <see cref="T:PostSharp.Reflection.DeclarationIdentifier" /> class.
</summary>
</member>
<member name="P:PostSharp.Reflection.DeclarationIdentifier.MemberIndex">
<summary>
Gets a number that uniquely identifies the member inside its declaring type, for the given member kind.
</summary>
</member>
<member name="P:PostSharp.Reflection.DeclarationIdentifier.Null">
<summary>
Gets a null instance of the <see cref="T:PostSharp.Reflection.DeclarationIdentifier" /> type/
</summary>
</member>
<member name="M:PostSharp.Reflection.DeclarationIdentifier.op_Equality(PostSharp.Reflection.DeclarationIdentifier,PostSharp.Reflection.DeclarationIdentifier)">
<summary>
Determines whether two instances of the <see cref="T:PostSharp.Reflection.DeclarationIdentifier" /> type are equal.
</summary>
<param name="left"></param>
<param name="right"></param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.DeclarationIdentifier.op_Equality(PostSharp.Reflection.DeclarationIdentifier,PostSharp.Reflection.DeclarationIdentifier)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.DeclarationIdentifier.op_Inequality(PostSharp.Reflection.DeclarationIdentifier,PostSharp.Reflection.DeclarationIdentifier)">
<summary>
Determines whether two instances of the <see cref="T:PostSharp.Reflection.DeclarationIdentifier" /> type are different.
</summary>
<param name="left"></param>
<param name="right"></param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.DeclarationIdentifier.op_Inequality(PostSharp.Reflection.DeclarationIdentifier,PostSharp.Reflection.DeclarationIdentifier)</parameter>
</include>
</markup>
</returns>
</member>
<member name="P:PostSharp.Reflection.DeclarationIdentifier.TypeIndex">
<summary>
Gets a number that uniquely identifies the type inside its declaring assembly.
</summary>
</member>
<member name="T:PostSharp.Reflection.IAssemblyName">
<summary>
Defines the semantics of an assembly name.
</summary>
</member>
<member name="P:PostSharp.Reflection.IAssemblyName.Culture">
<summary>
Gets the assembly culture name.
</summary>
</member>
<member name="M:PostSharp.Reflection.IAssemblyName.GetPublicKey">
<summary>
Gets the assembly public key.
</summary>
<returns>An array of bytes containing the public key,
or <c>null</c> if no public key is specified.</returns>
</member>
<member name="M:PostSharp.Reflection.IAssemblyName.GetPublicKeyToken">
<summary>
Gets the assembly public key token.
</summary>
<returns>An array of bytes containing the public key token,
or <c>null</c> if no public key is specified.</returns>
</member>
<member name="P:PostSharp.Reflection.IAssemblyName.IsMscorlib">
<summary>
Determines whether the current assembly (or assembly reference) is <c>mscorlib</c>.
</summary>
</member>
<member name="P:PostSharp.Reflection.IAssemblyName.IsRetargetable">
<summary>
Determines whether the reference is retargetable by the CLR, i.e. can be accommodated by
an assembly whose identity does not match the current assembly reference.
</summary>
</member>
<member name="P:PostSharp.Reflection.IAssemblyName.IsStronglyNamed">
<summary>
Determines whether the current assembly (or assembly reference) contains a strong name signature.
</summary>
</member>
<member name="P:PostSharp.Reflection.IAssemblyName.Name">
<summary>
Gets the assembly friendly name.
</summary>
</member>
<member name="P:PostSharp.Reflection.IAssemblyName.ProcessorArchitecture">
<summary>
Gets the processor architecture that the current assembly targets.
</summary>
</member>
<member name="P:PostSharp.Reflection.IAssemblyName.Version">
<summary>
Gets the assembly version.
</summary>
</member>
<member name="T:PostSharp.Reflection.ICodeReference">
<summary>
Represents a reference between two declarations.
</summary>
</member>
<member name="P:PostSharp.Reflection.ICodeReference.ReferencedDeclaration">
<summary>
Gets the declaration referenced by the other.
</summary>
</member>
<member name="P:PostSharp.Reflection.ICodeReference.ReferenceKind">
<summary>
Gets the kind of code reference.
</summary>
</member>
<member name="P:PostSharp.Reflection.ICodeReference.ReferencingDeclaration">
<summary>
Gets the declaration referencing the other.
</summary>
</member>
<member name="T:PostSharp.Reflection.IMetadataDispenser">
<summary>
Semantics of service that deserializes metadata objects (i.e. reflection objects) that have
been serialized by <see cref="T:PostSharp.Reflection.IMetadataEmitter" />.
</summary>
</member>
<member name="M:PostSharp.Reflection.IMetadataDispenser.GetMetadata(System.Int32)">
<summary>
Gets the reflection object corresponding to the given index.
</summary>
<param name="index">Index returned by <see cref="M:PostSharp.Reflection.IMetadataEmitter.GetMetadataIndex(System.Object)" />
at build time.</param>
<returns>The reflection object corresponding to <paramref name="index" />.</returns>
</member>
<member name="T:PostSharp.Reflection.IMetadataEmitter">
<summary>
Semantics of a service that allows build-time code to serialize references
to metadata objects (i.e. reflection objects) in a way that is compatible with obfuscators.
References are deserialized at run-time using <see cref="T:PostSharp.Reflection.IMetadataDispenser" />.
</summary>
</member>
<member name="M:PostSharp.Reflection.IMetadataEmitter.GetMetadataIndex(System.Object)">
<summary>
Gets the index of a serialized metadata reference.
</summary>
<param name="metadata">A reflection object.</param>
<returns>The index of <paramref name="metadata" />, to be serialized
and deserialized at runtime with <see cref="M:PostSharp.Reflection.IMetadataDispenser.GetMetadata(System.Int32)" />.</returns>
</member>
<member name="T:PostSharp.Reflection.ISourceDocument">
<summary>
Represents a file of source code.
</summary>
</member>
<member name="P:PostSharp.Reflection.ISourceDocument.DocumentType">
<summary>
Document type (<see cref="T:System.Guid" /> according to Microsoft PDB specification).
</summary>
</member>
<member name="P:PostSharp.Reflection.ISourceDocument.FileName">
<summary>
Full path of the file.
</summary>
</member>
<member name="P:PostSharp.Reflection.ISourceDocument.Language">
<summary>
Language (<see cref="T:System.Guid" /> according to Microsoft PDB specification).
</summary>
</member>
<member name="P:PostSharp.Reflection.ISourceDocument.LanguageVendor">
<summary>
Language vendor (<see cref="T:System.Guid" /> according to Microsoft PDB specification).
</summary>
</member>
<member name="T:PostSharp.Reflection.LocationInfo">
<summary>
Represents a <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.PropertyInfo" /> or
<see cref="T:System.Reflection.ParameterInfo" />, which all have the semantics of a location (get value, set value).
</summary>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.#ctor(System.Reflection.FieldInfo)">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.LocationInfo" /> from a <see cref="T:System.Reflection.FieldInfo" />.
</summary>
<param name="fieldInfo">The field represented by the <see cref="T:PostSharp.Reflection.LocationInfo" />.</param>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.#ctor(System.Reflection.ParameterInfo)">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.LocationInfo" /> from a <see cref="T:System.Reflection.ParameterInfo" />.
</summary>
<param name="parameterInfo">The parameter represented by the <see cref="T:PostSharp.Reflection.LocationInfo" />.</param>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.#ctor(System.Reflection.PropertyInfo)">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.LocationInfo" /> from a <see cref="T:System.Reflection.PropertyInfo" />.
</summary>
<param name="propertyInfo">The property represented by the <see cref="T:PostSharp.Reflection.LocationInfo" />.</param>
</member>
<member name="P:PostSharp.Reflection.LocationInfo.DeclaringType">
<summary>
Gets the declaring type of the underlying field, property, parameter, or return value.
</summary>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.Equals(PostSharp.Reflection.LocationInfo)">
<summary>Indicates whether the current object is equal to another object of the same type.</summary>
<param name="other">An object to compare with this object.</param>
<returns>true if the current object is equal to the <paramref name="other" /> parameter; otherwise, false.</returns>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.Equals(System.Object)">
<summary>Determines whether the specified object is equal to the current object.</summary>
<param name="obj">The object to compare with the current object. </param>
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
</member>
<member name="P:PostSharp.Reflection.LocationInfo.FieldInfo">
<summary>
Gets the underlying <see cref="T:System.Reflection.FieldInfo" />,
or <c>null</c> if the underlying code element is not a property.
</summary>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.GetHashCode">
<summary>Serves as the default hash function. </summary>
<returns>A hash code for the current object.</returns>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.GetValue(System.Object)">
<summary>
Returns the value of the field or property represented by the current object.
</summary>
<param name="instance">The object whose field or property value will be returned (<c>null</c> if the
field or property is static).</param>
<returns>The value of the field or property.</returns>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.GetValue(System.Object,System.Object[])">
<summary>
Returns the value of the field or property represented by the current object
with optional index values for indexed properties.
</summary>
<param name="instance">The object whose field or property value will be returned (<c>null</c> if the
field or property is static).</param>
<param name="index">Optional index values for indexed properties. <c>null</c> for fields or non-index
properties.</param>
<returns>The value of the field or property.</returns>
</member>
<member name="P:PostSharp.Reflection.LocationInfo.IsStatic">
<summary>
Determines whether the underlying field or property is static.
</summary>
</member>
<member name="P:PostSharp.Reflection.LocationInfo.LocationKind">
<summary>
Gets the location kind (<see cref="F:PostSharp.Reflection.LocationKind.Field" />,
<see cref="F:PostSharp.Reflection.LocationKind.Property" />,
<see cref="F:PostSharp.Reflection.LocationKind.Parameter" /> or
<see cref="F:PostSharp.Reflection.LocationKind.ReturnValue" />).
</summary>
</member>
<member name="P:PostSharp.Reflection.LocationInfo.LocationType">
<summary>
Gets the type of values that can be stored in the location.
</summary>
</member>
<member name="P:PostSharp.Reflection.LocationInfo.Name">
<summary>
Gets the name of the underlying field, property, parameter, or return value.
</summary>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.op_Equality(PostSharp.Reflection.LocationInfo,PostSharp.Reflection.LocationInfo)">
<summary>
Determines whether two instances of <see cref="T:PostSharp.Reflection.LocationInfo" /> represent the same element of code.
</summary>
<param name="left">A <see cref="T:PostSharp.Reflection.LocationInfo" />.</param>
<param name="right">A <see cref="T:PostSharp.Reflection.LocationInfo" />.</param>
<returns>
<c>true</c> if <paramref name="left" /> and <paramref name="right" /> are equal, otherwise <c>false</c>.</returns>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.op_Inequality(PostSharp.Reflection.LocationInfo,PostSharp.Reflection.LocationInfo)">
<summary>
Determines whether two instances of <see cref="T:PostSharp.Reflection.LocationInfo" /> represent different elements of code.
</summary>
<param name="left">A <see cref="T:PostSharp.Reflection.LocationInfo" />.</param>
<param name="right">A <see cref="T:PostSharp.Reflection.LocationInfo" />.</param>
<returns>
<c>true</c> if <paramref name="left" /> and <paramref name="right" /> are different, otherwise <c>false</c>.</returns>
</member>
<member name="P:PostSharp.Reflection.LocationInfo.ParameterInfo">
<summary>
Gets the underlying <see cref="T:System.Reflection.ParameterInfo" />,
or <c>null</c> if the underlying code element is not a property.
</summary>
</member>
<member name="P:PostSharp.Reflection.LocationInfo.PropertyInfo">
<summary>
Gets the underlying <see cref="T:System.Reflection.PropertyInfo" />,
or <c>null</c> if the underlying code element is not a property.
</summary>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.SetValue(System.Object,System.Object)">
<summary>
Sets the value of the field or property represented by the current object to a given value.
</summary>
<param name="instance">The object whose field or property value will be changed (<c>null</c> if the
field or property is static).</param>
<param name="value">New value.</param>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.SetValue(System.Object,System.Object,System.Object[])">
<summary>
Sets the value of the field or property represented by the current object to a given value
with optional index values for indexed properties.
</summary>
<param name="instance">The object whose field or property value will be changed (<c>null</c> if the
field or property is static).</param>
<param name="value">New value.</param>
<param name="index">Optional index values for indexed properties. <c>null</c> for fields or non-index
properties.</param>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.ToLocationInfo(System.Object)">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.LocationInfo" /> from a
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.PropertyInfo" />, or <see cref="T:System.Reflection.ParameterInfo" />.
</summary>
<param name="reflectionInfo"></param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.LocationInfo.ToLocationInfo(System.Object)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.ToLocationInfoArray(System.Collections.Generic.ICollection{System.Reflection.FieldInfo})">
<summary>
Converts a collection of <see cref="P:PostSharp.Reflection.LocationInfo.FieldInfo" /> into an array of <see cref="T:PostSharp.Reflection.LocationInfo" />.
</summary>
<param name="fields">A collection of <see cref="P:PostSharp.Reflection.LocationInfo.FieldInfo" />.</param>
<returns>An array of <see cref="T:PostSharp.Reflection.LocationInfo" />.</returns>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.ToLocationInfoArray(System.Collections.Generic.ICollection{System.Reflection.ParameterInfo})">
<summary>
Converts a collection of <see cref="P:PostSharp.Reflection.LocationInfo.ParameterInfo" /> into an array of <see cref="T:PostSharp.Reflection.LocationInfo" />.
</summary>
<param name="parameters">A collection of <see cref="P:PostSharp.Reflection.LocationInfo.ParameterInfo" />.</param>
<returns>An array of <see cref="T:PostSharp.Reflection.LocationInfo" />.</returns>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.ToLocationInfoArray(System.Collections.Generic.ICollection{System.Reflection.PropertyInfo})">
<summary>
Converts a collection of <see cref="P:PostSharp.Reflection.LocationInfo.PropertyInfo" /> into an array of <see cref="T:PostSharp.Reflection.LocationInfo" />.
</summary>
<param name="properties">A collection of <see cref="P:PostSharp.Reflection.LocationInfo.PropertyInfo" />.</param>
<returns>An array of <see cref="T:PostSharp.Reflection.LocationInfo" />.</returns>
</member>
<member name="M:PostSharp.Reflection.LocationInfo.ToString">
<summary>Returns a string that represents the current object.</summary>
<returns>A string that represents the current object.</returns>
</member>
<member name="T:PostSharp.Reflection.LocationKind">
<summary>
Enumerates the kinds of code elements that can be encapsulated by a <see cref="T:PostSharp.Reflection.LocationInfo" />.
</summary>
</member>
<member name="F:PostSharp.Reflection.LocationKind.Field">
<summary>
<see cref="T:System.Reflection.FieldInfo" />.
</summary>
</member>
<member name="F:PostSharp.Reflection.LocationKind.Property">
<summary>
<see cref="T:System.Reflection.PropertyInfo" />.
</summary>
</member>
<member name="F:PostSharp.Reflection.LocationKind.Parameter">
<summary>
A <see cref="T:System.Reflection.ParameterInfo" /> representing a parameter (not a <see cref="F:PostSharp.Reflection.LocationKind.ReturnValue" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.LocationKind.ReturnValue">
<summary>
A <see cref="T:System.Reflection.ParameterInfo" /> representing a return value.
</summary>
</member>
<member name="T:PostSharp.Reflection.MemberTypeCodeReference">
<summary>
Represents a relationship between a type and a member of this type.
A member can be a <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.PropertyInfo" />, or
<see cref="T:System.Reflection.ParameterInfo" />.
</summary>
</member>
<member name="P:PostSharp.Reflection.MemberTypeCodeReference.Member">
<summary>
Gets the member (<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.PropertyInfo" />, or
<see cref="T:System.Reflection.ParameterInfo" />).
</summary>
</member>
<member name="P:PostSharp.Reflection.MemberTypeCodeReference.Type">
<summary>
Gets the member type.
</summary>
</member>
<member name="T:PostSharp.Reflection.MethodUsageCodeReference">
<summary>
Represents a relationship between a declaration (<see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodInfo" /> or <see cref="T:System.Reflection.ConstructorInfo" />)
and a method whose instructions (method body) use the declaration.
</summary>
</member>
<member name="P:PostSharp.Reflection.MethodUsageCodeReference.Instructions">
<summary>
Gets the instructions that reference <see cref="P:PostSharp.Reflection.MethodUsageCodeReference.UsedDeclaration" />.
</summary>
</member>
<member name="P:PostSharp.Reflection.MethodUsageCodeReference.UsedDeclaration">
<summary>
Gets the declaration (<see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />
or <see cref="T:System.Reflection.ConstructorInfo" />) used by the method.
</summary>
</member>
<member name="P:PostSharp.Reflection.MethodUsageCodeReference.UsedType">
<summary>
Gets the <see cref="T:System.Type" /> used by the method. If the current
object represents a reference to a <see cref="T:System.Reflection.MethodInfo" />
or <see cref="T:System.Reflection.ConstructorInfo" />, this property returns the declaring
type of the method or constructor.
</summary>
</member>
<member name="P:PostSharp.Reflection.MethodUsageCodeReference.UsingMethod">
<summary>
Gets the method (<see cref="T:System.Reflection.MethodInfo" /> or <see cref="T:System.Reflection.ConstructorInfo" />)
whose body uses the declaration.
</summary>
</member>
<member name="T:PostSharp.Reflection.MethodUsageInstructions">
<summary>
Instructions whose operands can reference a declaration.
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.None">
<summary>
No instruction.
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.LoadField">
<summary>
Get field value.
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.StoreField">
<summary>
Set field value.
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.Call">
<summary>
Call to a static or sealed method.
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.CallVirtual">
<summary>
Call to a virtual method.
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.NewObject">
<summary>
Creation of a new instance (invoke the constructor).
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.LoadFieldAddress">
<summary>
Get field address.
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.LoadMetadata">
<summary>
Load the metadata token (for instance <c>typeof</c>).
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.LoadMethodAddress">
<summary>
Load the address of a static or sealed method (delegate instantiation).
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.LoadMethodAddressVirtual">
<summary>
Load the address of a virtual method (delegate instantiation).
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.Cast">
<summary>
Type casting.
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.IsInstance">
<summary>
"Safe" type casting (<c>as</c> or <c>is</c> in C#).
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.SizeOf">
<summary>
Get the size of a value type (<c>sizeof</c> in C#).
</summary>
</member>
<member name="F:PostSharp.Reflection.MethodUsageInstructions.NewArray">
<summary>
Create a new array of a type.
</summary>
</member>
<member name="T:PostSharp.Reflection.ObjectConstruction">
<summary>
Specifies how an object should be constructed, i.e. specifies the constructor to be
used, the arguments to be passed to this constructor, and the fields or properties to
be set.
</summary>
</member>
<member name="M:PostSharp.Reflection.ObjectConstruction.#ctor(System.Reflection.ConstructorInfo,System.Object[])">
<summary>
Initializes a new type-safe <see cref="T:PostSharp.Reflection.ObjectConstruction" /> from a <see cref="T:System.Reflection.ConstructorInfo" />.
</summary>
<param name="constructor">Constructor.</param>
<param name="constructorArguments">Arguments passed to the constructor.</param>
</member>
<member name="M:PostSharp.Reflection.ObjectConstruction.#ctor(System.Reflection.CustomAttributeData)">
<summary>
Initializes a new type-safe <see cref="T:PostSharp.Reflection.ObjectConstruction" /> from a <see cref="T:System.Reflection.CustomAttributeData" /></summary>
<param name="customAttributeData">A <see cref="T:System.Reflection.CustomAttributeData" /></param>
</member>
<member name="M:PostSharp.Reflection.ObjectConstruction.#ctor(System.String,System.Object[])">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.ObjectConstruction" /> by specifying a type name and a list of constructor arguments.
</summary>
<param name="typeName">Name of the object type.</param>
<param name="constructorArguments">Arguments passed to the constructor.</param>
</member>
<member name="M:PostSharp.Reflection.ObjectConstruction.#ctor(System.Type,System.Object[])">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.ObjectConstruction" /> by specifying a type name and a list of constructor arguments.
</summary>
<param name="type">Object type.</param>
<param name="constructorArguments">Arguments passed to the constructor.</param>
</member>
<member name="P:PostSharp.Reflection.ObjectConstruction.Constructor">
<summary>
Gets the custom attribute constructor.
</summary>
</member>
<member name="P:PostSharp.Reflection.ObjectConstruction.ConstructorArguments">
<summary>
Gets the arguments passed to the custom attribute constructor.
</summary>
</member>
<member name="P:PostSharp.Reflection.ObjectConstruction.NamedArguments">
<summary>
Gets the collection of named arguments.
</summary>
</member>
<member name="P:PostSharp.Reflection.ObjectConstruction.TypeName">
<summary>
Gets the assembly-qualified type name of the object.
</summary>
</member>
<member name="T:PostSharp.Reflection.ReflectionExtensions">
<summary>
Provides utility methods to work with the <c>System.Reflection</c> namespace.
</summary>
</member>
<member name="M:PostSharp.Reflection.ReflectionExtensions.GetAutomaticProperty(System.Reflection.FieldInfo)">
<summary>
Gets the <see cref="T:System.Reflection.PropertyInfo" /> whose a given field is the backing field from the current type or base types.
</summary>
<param name="field">A field.</param>
<returns>The <see cref="T:System.Reflection.PropertyInfo" /> representing the property whose <paramref name="field" /> is the backing field, or <c>null</c>
if <paramref name="field" /> is not the backing field of an automatic property.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionExtensions.GetAutomaticProperty(System.Reflection.FieldInfo,System.Boolean)">
<summary>
Gets the <see cref="T:System.Reflection.PropertyInfo" /> whose a given field is the backing field and specifies whether base types should be considered.
</summary>
<param name="field">A field.</param>
<param name="inherit">
<c>true</c> if the property should be looked for in the base, otherwise <c>false</c>.</param>
<returns>The <see cref="T:System.Reflection.PropertyInfo" /> representing the property whose <paramref name="field" /> is the backing field, or <c>null</c>
if <paramref name="field" /> is not the backing field of an automatic property.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionExtensions.GetBackingField(System.Reflection.PropertyInfo)">
<summary>
Gets the backing field of a given property.
</summary>
<param name="propertyInfo">A property.</param>
<returns>The <see cref="T:System.Reflection.FieldInfo" /> representing the backing field of <paramref name="propertyInfo" />, or <c>null</c> if <paramref name="propertyInfo" />
is not an automatic property.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionExtensions.GetStateMachineKind(System.Reflection.MethodInfo)">
<summary>
Gets the kind of state machine (typically <see cref="F:PostSharp.Reflection.StateMachineKind.Async" />, <see cref="F:PostSharp.Reflection.StateMachineKind.Enumerable" /> or <see cref="F:PostSharp.Reflection.StateMachineKind.None" />) that implements a given method.
</summary>
<param name="method">A method.</param>
<returns>A <see cref="T:PostSharp.Reflection.StateMachineKind" /> value, or <see cref="F:PostSharp.Reflection.StateMachineKind.None" /> if <paramref name="method" /> is not implemented by a state machine.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionExtensions.IsAutomaticProperty(System.Reflection.PropertyInfo)">
<summary>
Determines whether a given property is an automatic property.
</summary>
<param name="propertyInfo">A property.</param>
<returns>
<c>true</c> if <paramref name="propertyInfo" /> represents an automatic property, otherwise <c>false</c>.</returns>
</member>
<member name="T:PostSharp.Reflection.ReflectionHelper">
<summary>
Provides helper methods for work with <see cref="N:System.Reflection" />.
</summary>
</member>
<member name="M:PostSharp.Reflection.ReflectionHelper.AreInternalsVisibleTo(System.Reflection.Assembly,System.Reflection.Assembly)">
<summary>
Determines whether the <see cref="T:System.Runtime.CompilerServices.InternalsVisibleToAttribute" /> attribute relationship exists between two assemblies.
</summary>
<param name="definingAssembly">The assembly defining the <see cref="T:System.Runtime.CompilerServices.InternalsVisibleToAttribute" /> attribute.</param>
<param name="referencingAssembly">The assembly referenced by the <see cref="T:System.Runtime.CompilerServices.InternalsVisibleToAttribute" /> attribute.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.AreInternalsVisibleTo(System.Reflection.Assembly,System.Reflection.Assembly)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionHelper.GetAssemblyQualifiedTypeName(System.String,System.String)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetAssemblyQualifiedTypeName(System.String,System.String)</parameter>
</include>
</markup>
</summary>
<param name="typeName">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>typeName</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetAssemblyQualifiedTypeName(System.String,System.String)</parameter>
</include>
</markup>
</param>
<param name="assemblyName">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>assemblyName</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetAssemblyQualifiedTypeName(System.String,System.String)</parameter>
</include>
</markup>
</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetAssemblyQualifiedTypeName(System.String,System.String)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionHelper.GetEvent(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Reflection.MethodInfo)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetEvent(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</summary>
<param name="declaringType">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>declaringType</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetEvent(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</param>
<param name="addMethod">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>addMethod</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetEvent(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</param>
<param name="removeMethod">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>removeMethod</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetEvent(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</param>
<param name="raiseMethod">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>raiseMethod</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetEvent(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetEvent(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionHelper.GetLocation(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetLocation(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</summary>
<param name="declaringType">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>declaringType</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetLocation(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</param>
<param name="getter">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>getter</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetLocation(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</param>
<param name="setter">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>setter</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetLocation(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetLocation(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</summary>
<param name="declaringType">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>declaringType</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</param>
<param name="getter">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>getter</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</param>
<param name="setter">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>setter</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Boolean)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Boolean)</parameter>
</include>
</markup>
</summary>
<param name="declaringType">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>declaringType</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Boolean)</parameter>
</include>
</markup>
</param>
<param name="getter">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>getter</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Boolean)</parameter>
</include>
</markup>
</param>
<param name="setter">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>setter</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Boolean)</parameter>
</include>
</markup>
</param>
<param name="throwOnMissingMember">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>throwOnMissingMember</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Boolean)</parameter>
</include>
</markup>
</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.GetProperty(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo,System.Boolean)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionHelper.IsCompilerGenerated(System.Reflection.MemberInfo)">
<summary>
Determines whether a <see cref="T:System.Reflection.MemberInfo" /> is compiler-generated.
</summary>
<param name="memberInfo">A <see cref="T:System.Reflection.MemberInfo" />.</param>
<returns>
<c>true</c> if <paramref name="memberInfo" /> is compiler-generated, <c>false</c> if it is hand-coded.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionHelper.IsCompilerGenerated(System.Type)">
<summary>
Determines whether a <see cref="T:System.Type" /> is compiler-generated.
</summary>
<param name="type">A <see cref="T:System.Type" />.</param>
<returns>
<c>true</c> if <paramref name="type" /> is compiler-generated, <c>false</c> if it is hand-coded.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionHelper.ParseAssemblyQualifiedTypeName(System.String,System.String@,System.String@)">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.ParseAssemblyQualifiedTypeName(System.String,System.String@,System.String@)</parameter>
</include>
</markup>
</summary>
<param name="typeFullName">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>typeFullName</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.ParseAssemblyQualifiedTypeName(System.String,System.String@,System.String@)</parameter>
</include>
</markup>
</param>
<param name="typeName">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>typeName</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.ParseAssemblyQualifiedTypeName(System.String,System.String@,System.String@)</parameter>
</include>
</markup>
</param>
<param name="assemblyName">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>assemblyName</parameter>
<parameter>M:PostSharp.Reflection.ReflectionHelper.ParseAssemblyQualifiedTypeName(System.String,System.String@,System.String@)</parameter>
</include>
</markup>
</param>
</member>
<member name="T:PostSharp.Reflection.ReflectionSearch">
<summary>
Set of static methods providing broader access to assembly metadata than
the <c>System.Reflection</c> namespace. These methods are only
available at build time.
</summary>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetCustomAttributesOfType(System.Type)">
<summary>
Gets all custom attributes of a given type in the assembly being currently processed.
</summary>
<param name="customAttributeType">
<see cref="T:System.Type" /> of the custom attribute.</param>
<returns>The set of all custom attributes of type <paramref name="customAttributeType" />
defined in the assembly being currently processed.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetCustomAttributesOfType(System.Type,PostSharp.Reflection.ReflectionSearchOptions)">
<summary>
Gets all custom attributes of a given type in the assembly being currently processed and specifies
additional options.
</summary>
<param name="customAttributeType">
<see cref="T:System.Type" /> of the custom attribute.</param>
<param name="options">Any combination of options <see cref="F:PostSharp.Reflection.ReflectionSearchOptions.IncludeDerivedTypes" /> and
<see cref="F:PostSharp.Reflection.ReflectionSearchOptions.UseReflectionWrappers" />.</param>
<returns>The set of all custom attributes of type <paramref name="customAttributeType" /> (or any type derived
from <paramref name="customAttributeType" />, if the option <see cref="F:PostSharp.Reflection.ReflectionSearchOptions.IncludeDerivedTypes" />
is <c>true</c>) defined in the assembly being currently processed.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetCustomAttributesOnTarget(System.Object)">
<summary>
Gets all custom attributes on a given element of code, including those who have been added indirectly, for
instance through <see cref="T:PostSharp.Extensibility.MulticastAttribute" />.
</summary>
<param name="target">Element of code (<see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />, ...) whose
custom attributes are requested.</param>
<returns>The set of all custom attributes added, directly or indirectly, to <paramref name="target" />.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetCustomAttributesOnTarget(System.Object,PostSharp.Reflection.ReflectionSearchOptions)">
<summary>
Gets all custom attributes on a given element of code, including those who have been added indirectly, for
instance through <see cref="T:PostSharp.Extensibility.MulticastAttribute" /> and specifies additional options.
</summary>
<param name="target">Element of code (<see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />, ...) whose
custom attributes are requested.</param>
<param name="options">
<see cref="F:PostSharp.Reflection.ReflectionSearchOptions.UseReflectionWrappers" /> or <see cref="F:PostSharp.Reflection.ReflectionSearchOptions.None" />.</param>
<returns>The set of all custom attributes added, directly or indirectly, to <paramref name="target" />.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetCustomAttributesOnTarget``1(System.Object,PostSharp.Reflection.ReflectionSearchOptions)">
<summary>
Gets all custom attributes of a given type on a given element of code, including those who have been added indirectly, for
instance through <see cref="T:PostSharp.Extensibility.MulticastAttribute" /> and specifies additional options.
</summary>
<param name="target">Element of code (<see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />, ...) whose
custom attributes are requested.</param>
<param name="options">
<see cref="F:PostSharp.Reflection.ReflectionSearchOptions.UseReflectionWrappers" /> or <see cref="F:PostSharp.Reflection.ReflectionSearchOptions.None" />.</param>
<typeparam name="T">Type of the custom attribute.</typeparam>
<returns>The set of all custom attributes added, directly or indirectly, to <paramref name="target" />.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetDeclarationsUsedByMethod(System.Reflection.MethodBase)">
<summary>
Gets all declarations (<see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodInfo" /> or <see cref="T:System.Reflection.ConstructorInfo" />) used
by the body of a given method or constructor.
</summary>
<param name="method">A <see cref="T:System.Reflection.MethodInfo" /> or <see cref="T:System.Reflection.ConstructorInfo" />.</param>
<returns>An array of <see cref="T:PostSharp.Reflection.MethodUsageCodeReference" /> containing one
item for each declaration used by the body of <paramref name="method" />.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetDeclarationsUsedByMethod(System.Reflection.MethodBase,PostSharp.Reflection.ReflectionSearchOptions)">
<summary>
Gets all declarations (<see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodInfo" /> or <see cref="T:System.Reflection.ConstructorInfo" />) used
by the body of a given method or constructor and specifies additional options.
</summary>
<param name="method">A <see cref="T:System.Reflection.MethodInfo" /> or <see cref="T:System.Reflection.ConstructorInfo" />.</param>
<param name="options">
<see cref="F:PostSharp.Reflection.ReflectionSearchOptions.UseReflectionWrappers" /> or <see cref="F:PostSharp.Reflection.ReflectionSearchOptions.None" />.</param>
<returns>An array of <see cref="T:PostSharp.Reflection.MethodUsageCodeReference" /> containing one
item for each declaration used by the body of <paramref name="method" />.
</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetDerivedTypes(System.Type)">
<summary>
Gets the set of types derived from a given class or implementing a given interface.
</summary>
<param name="baseType">A class or interface.</param>
<returns>The set of types derived from or implementing <paramref name="baseType" />.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetDerivedTypes(System.Type,PostSharp.Reflection.ReflectionSearchOptions)">
<summary>
Gets the set of types derived from a given class or implementing a given interface.
and specifies additional options.
</summary>
<param name="baseType">A class or interface.</param>
<param name="options">Any valid combination of the options <see cref="F:PostSharp.Reflection.ReflectionSearchOptions.UseReflectionWrappers" />,
<see cref="F:PostSharp.Reflection.ReflectionSearchOptions.IncludeTypeElement" /> (partial type match), and
<see cref="F:PostSharp.Reflection.ReflectionSearchOptions.IncludeDerivedTypes" /> (deep search).
<see cref="F:PostSharp.Reflection.ReflectionSearchOptions.IncludeTypeElement" /> and <see cref="F:PostSharp.Reflection.ReflectionSearchOptions.IncludeDerivedTypes" />
cannot be used together.</param>
<returns>The set of types derived from or implementing <paramref name="baseType" />.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetMembersOfType(System.Type)">
<summary>
Gets all members (<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.PropertyInfo" />, or
<see cref="T:System.Reflection.ParameterInfo" />) of the assembly being processed of a given type.
</summary>
<param name="memberType">Member type.</param>
<returns>The set of all members of type <paramref name="memberType" /> in the assembly being processed</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetMembersOfType(System.Type,PostSharp.Reflection.ReflectionSearchOptions)">
<summary>
Gets all members (<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.PropertyInfo" />, or
<see cref="T:System.Reflection.ParameterInfo" />) of the assembly being processed of a given type and specifies additional options.
</summary>
<param name="memberType">Member type.</param>
<param name="options">Any combination of the options <see cref="F:PostSharp.Reflection.ReflectionSearchOptions.UseReflectionWrappers" /> and
<see cref="F:PostSharp.Reflection.ReflectionSearchOptions.IncludeTypeElement" /> (partial type match).
</param>
<returns>The set of all members of type <paramref name="memberType" /> in the assembly being processed</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetMethodsUsingDeclaration(System.Reflection.MemberInfo)">
<summary>
Gets the set of methods and constructors whose body references a given (<see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodInfo" /> or <see cref="T:System.Reflection.ConstructorInfo" />).
</summary>
<param name="declaration">The <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodInfo" /> or <see cref="T:System.Reflection.ConstructorInfo" />
whose references are requested.</param>
<returns>An array of <see cref="T:PostSharp.Reflection.MethodUsageCodeReference" /> containing one
item for each method or constructor whose body references <paramref name="declaration" />.
</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.GetMethodsUsingDeclaration(System.Reflection.MemberInfo,PostSharp.Reflection.ReflectionSearchOptions)">
<summary>
Gets the set of methods and constructors whose body references a given (<see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodInfo" /> or <see cref="T:System.Reflection.ConstructorInfo" />)
and specifies whether
reflection wrappers should be used instead of runtime reflection objects.
</summary>
<param name="declaration">The <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodInfo" /> or <see cref="T:System.Reflection.ConstructorInfo" />
whose references are requested.</param>
<param name="options">Any combination of the options <see cref="F:PostSharp.Reflection.ReflectionSearchOptions.UseReflectionWrappers" />
and <see cref="F:PostSharp.Reflection.ReflectionSearchOptions.IncludeTypeElement" /> (partial type match).</param>
<returns>An array of <see cref="T:PostSharp.Reflection.MethodUsageCodeReference" /> containing one
item for each method or constructor whose body references <paramref name="declaration" />.
</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionSearch.HasCustomAttribute(System.Object,System.Type,System.Boolean)">
<summary>
Determines whether a declaration has a custom attribute of a given type, including those who have been added indirectly, for
instance through <see cref="T:PostSharp.Extensibility.MulticastAttribute" />.
</summary>
<param name="target">Element of code (<see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />, ...) whose
custom attributes are requested.</param>
<param name="type">The type of custom attributes.</param>
<param name="inherit">
<c>true</c> to consider custom attributes derived from <paramref name="type" />, <c>false</c> to consider
only custom attributes strictly of type <paramref name="type" />.</param>
<returns>True if <paramref name="type" /> has a custom attribute of type <paramref name="type" />, otherwise <c>false</c>.</returns>
</member>
<member name="T:PostSharp.Reflection.ReflectionSearchOptions">
<summary>
<markup>
<include item="SMCMissingTag">
<parameter>summary</parameter>
<parameter>T:PostSharp.Reflection.ReflectionSearchOptions</parameter>
</include>
</markup>
</summary>
</member>
<member name="F:PostSharp.Reflection.ReflectionSearchOptions.None">
<summary>
No option.
</summary>
</member>
<member name="F:PostSharp.Reflection.ReflectionSearchOptions.IncludeDerivedTypes">
<summary>
Include relationships referencing a derived type (instead of exactly that type).
</summary>
</member>
<member name="F:PostSharp.Reflection.ReflectionSearchOptions.IncludeTypeElement">
<summary>
Include relationships referencing a type signature including the given type (instead of only the given type).
</summary>
</member>
<member name="F:PostSharp.Reflection.ReflectionSearchOptions.UseReflectionWrappers">
<summary>
Use reflection wrappers instead of runtime reflection objects.
Reflection wrappers implement standard reflection classes
(<see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />, ...), but do not require the CLR
to load the type. Reflection wrappers should be used only when the CLR is not able to load the type,
for instance because the type is not valid for runtime execution. This happens for instance when the
type has an <c>extern</c> method implemented after compilation by PostSharp.
</summary>
</member>
<member name="T:PostSharp.Reflection.ReflectionTypeComparer">
<summary>
Comparer of reflection types (<see cref="T:System.Type" />) based on content, not reference.
Supports the unbound generic parameters derived from the <see cref="T:PostSharp.Reflection.GenericArgs.GenericArg" /> class.
</summary>
</member>
<member name="M:PostSharp.Reflection.ReflectionTypeComparer.Equals(System.Type,System.Type)">
<summary>Determines whether the specified objects are equal.</summary>
<param name="x">The first object of type <paramref name="T" /> to compare.</param>
<param name="y">The second object of type <paramref name="T" /> to compare.</param>
<returns>true if the specified objects are equal; otherwise, false.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionTypeComparer.Equals(System.Type[],System.Type[])">
<summary>Determines whether the specified objects are equal.</summary>
<param name="x">The first object of type <paramref name="T" /> to compare.</param>
<param name="y">The second object of type <paramref name="T" /> to compare.</param>
<returns>true if the specified objects are equal; otherwise, false.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionTypeComparer.GetHashCode(System.Type)">
<summary>Returns a hash code for the specified object.</summary>
<param name="obj">The <see cref="T:System.Object" /> for which a hash code is to be returned.</param>
<returns>A hash code for the specified object.</returns>
<exception cref="T:System.ArgumentNullException">The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null.</exception>
</member>
<member name="M:PostSharp.Reflection.ReflectionTypeComparer.GetHashCode(System.Type[])">
<summary>Returns a hash code for the specified object.</summary>
<param name="obj">The <see cref="T:System.Object" /> for which a hash code is to be returned.</param>
<param name="types">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>types</parameter>
<parameter>M:PostSharp.Reflection.ReflectionTypeComparer.GetHashCode(System.Type[])</parameter>
</include>
</markup>
</param>
<returns>A hash code for the specified object.</returns>
<exception cref="T:System.ArgumentNullException">The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null.</exception>
</member>
<member name="M:PostSharp.Reflection.ReflectionTypeComparer.GetInstance">
<summary>
Gets an instance of <see cref="T:PostSharp.Reflection.ReflectionTypeComparer" /> that does not perform
substitution of generic parameters.
</summary>
<returns>An instance of <see cref="T:PostSharp.Reflection.ReflectionTypeComparer" />.</returns>
</member>
<member name="M:PostSharp.Reflection.ReflectionTypeComparer.GetInstance(System.Type[],System.Type[],System.Type[],System.Type[])">
<summary>
Gets an instance of <see cref="T:PostSharp.Reflection.ReflectionTypeComparer" /> that performs
substitution of generic parameters.
</summary>
<param name="leftGenericMethodParameters">Array of types to be substituted to the
generic method parameters of the left member.</param>
<param name="leftGenericTypeParameters">Array of types to be substituted to the
generic type parameters of the left member.</param>
<param name="rightGenericMethodParameters">Array of types to be substituted to the
generic method parameters of the right member.</param>
<param name="rightGenericTypeParameters">Array of types to be substituted to the
generic type parameters of the right member.</param>
<returns>An instance of <see cref="T:PostSharp.Reflection.ReflectionTypeComparer" />.</returns>
</member>
<member name="T:PostSharp.Reflection.StateMachineKind">
<summary>
Enumeration of kinds of state machines.
</summary>
</member>
<member name="F:PostSharp.Reflection.StateMachineKind.None">
<summary>
The method is not implemented by a state machine.
</summary>
</member>
<member name="F:PostSharp.Reflection.StateMachineKind.Enumerator">
<summary>
Iterator method returning an <see cref="T:System.Collections.Generic.IEnumerator`1" />.
</summary>
</member>
<member name="F:PostSharp.Reflection.StateMachineKind.Enumerable">
<summary>
Iterator method returning an <see cref="T:System.Collections.Generic.IEnumerable`1" />.
</summary>
</member>
<member name="F:PostSharp.Reflection.StateMachineKind.Async">
<summary>
Async method.
</summary>
</member>
<member name="T:PostSharp.Reflection.SymbolSequencePoint">
<summary>
Maps a point in IL instructions to location in source code.
</summary>
</member>
<member name="P:PostSharp.Reflection.SymbolSequencePoint.EndColumn">
<summary>
Gets the end column in the source file.
</summary>
</member>
<member name="P:PostSharp.Reflection.SymbolSequencePoint.EndLine">
<summary>
Gets the end line in the source file.
</summary>
</member>
<member name="M:PostSharp.Reflection.SymbolSequencePoint.Equals(PostSharp.Reflection.SymbolSequencePoint)">
<summary>Indicates whether the current object is equal to another object of the same type.</summary>
<param name="other">An object to compare with this object.</param>
<returns>true if the current object is equal to the <paramref name="other" /> parameter; otherwise, false.</returns>
</member>
<member name="M:PostSharp.Reflection.SymbolSequencePoint.Equals(System.Object)">
<summary>Determines whether the specified object is equal to the current object.</summary>
<param name="obj">The object to compare with the current object. </param>
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
</member>
<member name="M:PostSharp.Reflection.SymbolSequencePoint.GetHashCode">
<summary>Serves as the default hash function. </summary>
<returns>A hash code for the current object.</returns>
</member>
<member name="F:PostSharp.Reflection.SymbolSequencePoint.Hidden">
<summary>
Gets a symbol meaning that the associated instructions have no source code.
</summary>
</member>
<member name="P:PostSharp.Reflection.SymbolSequencePoint.IsHidden">
<summary>
Determines whether the current symbol means that the associated
instructions have no source code.
</summary>
</member>
<member name="P:PostSharp.Reflection.SymbolSequencePoint.IsSpecial">
<summary>
Determines whether the current symbol is a special, non-standard, defined
by PostSharp and supported by PostSharp Tools for Visual Studio.
</summary>
</member>
<member name="M:PostSharp.Reflection.SymbolSequencePoint.op_Equality(PostSharp.Reflection.SymbolSequencePoint,PostSharp.Reflection.SymbolSequencePoint)">
<summary>
Determines whether two sequence points are equal.
</summary>
<param name="left">A <see cref="T:PostSharp.Reflection.SymbolSequencePoint" />.</param>
<param name="right">A <see cref="T:PostSharp.Reflection.SymbolSequencePoint" />.</param>
<returns>
<c>true</c> if both sequence points are equal, otherwise <c>false</c>.</returns>
</member>
<member name="M:PostSharp.Reflection.SymbolSequencePoint.op_Inequality(PostSharp.Reflection.SymbolSequencePoint,PostSharp.Reflection.SymbolSequencePoint)">
<summary>
Determines whether two sequence points are different.
</summary>
<param name="left">A <see cref="T:PostSharp.Reflection.SymbolSequencePoint" />.</param>
<param name="right">A <see cref="T:PostSharp.Reflection.SymbolSequencePoint" />.</param>
<returns>
<c>true</c> if both sequence points are different, otherwise <c>false</c>.</returns>
</member>
<member name="P:PostSharp.Reflection.SymbolSequencePoint.SourceDocument">
<summary>
Document (file of source code) containing the current sequence point.
</summary>
</member>
<member name="P:PostSharp.Reflection.SymbolSequencePoint.StartColumn">
<summary>
Gets the start column in the source file.
</summary>
</member>
<member name="P:PostSharp.Reflection.SymbolSequencePoint.StartLine">
<summary>
Gets the start line in the source file.
</summary>
</member>
<member name="M:PostSharp.Reflection.SymbolSequencePoint.ToString">
<summary>Returns a string that represents the current object.</summary>
<returns>A string that represents the current object.</returns>
</member>
<member name="T:PostSharp.Reflection.TypeInheritanceCodeReference">
<summary>
Represents a inheritance relationship between two types.
</summary>
</member>
<member name="P:PostSharp.Reflection.TypeInheritanceCodeReference.BaseType">
<summary>
Gets the base type. If the base type is a generic type, this property contains
a generic type instance.
</summary>
</member>
<member name="P:PostSharp.Reflection.TypeInheritanceCodeReference.DerivedType">
<summary>
Gets the derived type.
</summary>
</member>
<member name="T:PostSharp.Reflection.Visibility">
<summary>
Visibility of types and type members.
</summary>
</member>
<member name="F:PostSharp.Reflection.Visibility.Public">
<summary>
Public.
</summary>
</member>
<member name="F:PostSharp.Reflection.Visibility.Family">
<summary>
Family (protected).
</summary>
</member>
<member name="F:PostSharp.Reflection.Visibility.Assembly">
<summary>
Assembly (internal).
</summary>
</member>
<member name="F:PostSharp.Reflection.Visibility.FamilyOrAssembly">
<summary>
Family or assembly (protected internal).
</summary>
</member>
<member name="F:PostSharp.Reflection.Visibility.FamilyAndAssembly">
<summary>
Family and assembly (no C# equivalent: protected types inside the current assembly).
</summary>
</member>
<member name="F:PostSharp.Reflection.Visibility.Private">
<summary>
Private.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericArg">
<summary>
Classes derived from <see cref="T:PostSharp.Reflection.GenericArgs.GenericArg" /> represent unbound generic arguments.
It is a 'trick' to create unbound generic instances, because C# and <c>System.Reflection</c>
does not make it possible. Use the <see cref="M:PostSharp.Reflection.GenericArgs.GenericArg.Map(System.Type,System.Type[],System.Type[])" /> method to bind the unbound
generic arguments to concrete types.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericArg.Map(System.Type,System.Type[],System.Type[])">
<summary>
Binds unbound generic arguments to concrete types.
</summary>
<param name="type">A <see cref="T:System.Type" /> containing unbound generic arguments
(derived from <see cref="T:PostSharp.Reflection.GenericArgs.GenericArg" />).</param>
<param name="genericTypeParameters">Array of types to which
the unbound generic type arguments should be bound.</param>
<param name="genericMethodParameters">Array of types to which
the unbound generic method parameters should be bound.</param>
<returns>A <see cref="T:System.Type" /> where unbound generic arguments have been replaced
by <paramref name="genericTypeParameters" /> and <paramref name="genericMethodParameters" />.</returns>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericMethodArg">
<summary>
Classes derived from <see cref="T:PostSharp.Reflection.GenericArgs.GenericMethodArg" /> represent unbound generic method parameters.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericMethodArg0">
<summary>
Unbound generic method argument. Reference to the 0-th generic method argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericMethodArg0.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericMethodArg0" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericMethodArg1">
<summary>
Unbound generic method argument. Reference to the 1-th generic method argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericMethodArg1.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericMethodArg1" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericMethodArg2">
<summary>
Unbound generic method argument. Reference to the 2-th generic method argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericMethodArg2.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericMethodArg2" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericMethodArg3">
<summary>
Unbound generic method argument. Reference to the 3-th generic method argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericMethodArg3.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericMethodArg0" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericMethodArg4">
<summary>
Unbound generic method argument. Reference to the 4-th generic method argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericMethodArg4.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericMethodArg4" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericMethodArg5">
<summary>
Unbound generic method argument. Reference to the 5-th generic method argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericMethodArg5.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericMethodArg5" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericMethodArg6">
<summary>
Unbound generic method argument. Reference to the 6-th generic method argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericMethodArg6.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericMethodArg6" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericMethodArg7">
<summary>
Unbound generic method argument. Reference to the 7-th generic method argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericMethodArg7.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericMethodArg7" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericMethodArg8">
<summary>
Unbound generic method argument. Reference to the 8-th generic method argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericMethodArg8.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericMethodArg8" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericMethodArg9">
<summary>
Unbound generic method argument. Reference to the 9-th generic method argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericMethodArg9.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericMethodArg9" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericTypeArg">
<summary>
Classes derived from <see cref="T:PostSharp.Reflection.GenericArgs.GenericTypeArg" /> represent unbound generic type parameters.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericTypeArg0">
<summary>
Unbound generic type argument. Reference to the 0-th generic type argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericTypeArg0.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericTypeArg0" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericTypeArg1">
<summary>
Unbound generic type argument. Reference to the 1-th generic type argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericTypeArg1.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericTypeArg1" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericTypeArg2">
<summary>
Unbound generic type argument. Reference to the 2-th generic type argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericTypeArg2.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericTypeArg2" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericTypeArg3">
<summary>
Unbound generic type argument. Reference to the 3-th generic type argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericTypeArg3.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericTypeArg3" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericTypeArg4">
<summary>
Unbound generic type argument. Reference to the 4-th generic type argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericTypeArg4.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericTypeArg4" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericTypeArg5">
<summary>
Unbound generic type argument. Reference to the 5-th generic type argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericTypeArg5.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericTypeArg5" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericTypeArg6">
<summary>
Unbound generic type argument. Reference to the 6-th generic type argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericTypeArg6.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericTypeArg6" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericTypeArg7">
<summary>
Unbound generic type argument. Reference to the 7-th generic type argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericTypeArg7.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericTypeArg7" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericTypeArg8">
<summary>
Unbound generic type argument. Reference to the 8-th generic type argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericTypeArg8.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericTypeArg7" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.GenericArgs.GenericTypeArg9">
<summary>
Unbound generic type argument. Reference to the 9-th generic type argument.
</summary>
</member>
<member name="M:PostSharp.Reflection.GenericArgs.GenericTypeArg9.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.GenericArgs.GenericTypeArg9" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.AddressAlignment">
<summary>
Enumeration of address alignments for access to unmanaged memory represented
by <see cref="T:PostSharp.Reflection.Syntax.ICopyBufferExpression" />, <see cref="T:PostSharp.Reflection.Syntax.IFieldExpression" /> or <see cref="T:PostSharp.Reflection.Syntax.IValueOfExpression" />.
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.AddressAlignment.Default">
<summary>
Default alignment (machine word).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.AddressAlignment.Unaligned1">
<summary>
1-byte alignment.
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.AddressAlignment.Unaligned2">
<summary>
2-byte alignment.
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.AddressAlignment.Unaligned4">
<summary>
4-byte alignment.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IAddressOfExpression">
<summary>
Expression that takes the address of the operand. Equivalent to the C# operator <c>&amp;</c>.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IAddressOfExpression.IsReadOnly">
<summary>
Determines whether the returned pointer is a read-only pointer.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IBinaryExpression">
<summary>
Expression that has two operands, <see cref="P:PostSharp.Reflection.Syntax.IBinaryExpression.Left" /> and <see cref="P:PostSharp.Reflection.Syntax.IBinaryExpression.Right" />.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IBinaryExpression.Left">
<summary>
Gets the left operand.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IBinaryExpression.Right">
<summary>
Gets the right operand.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IBlockExpression">
<summary>
Block containing other blocks or instructions.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IBlockExpression.ExceptionHandlers">
<summary>
Gets the collection of exception handlers that protect the block.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IBlockExpression.Items">
<summary>
Gets the collection of items in the block.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IBlockExpression.Label">
<summary>
Gets a string that uniquely identifies the block (inside the current method body) as a possible branching target.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IBlockExpression.LocalVariables">
<summary>
Gets the collection of local variables defined for the current block.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IConditionalExpression">
<summary>
Conditional expression, corresponding to the <c>if</c> keyword in C#.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IConditionalExpression.Condition">
<summary>
Gets the condition expression (the return type does not need to be <c>bool</c>. Zero and <c>null</c> values are considered <c>false</c>).
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IConditionalExpression.IfFalse">
<summary>
Gets the expression executed when <see cref="P:PostSharp.Reflection.Syntax.IConditionalExpression.Condition" /> evaluates to <c>false</c>, zero, or <c>null</c>.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IConditionalExpression.IfTrue">
<summary>
Gets the expression executed when <see cref="P:PostSharp.Reflection.Syntax.IConditionalExpression.Condition" /> evaluates to <c>true</c> or a non-null and non-zero vale.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IConstantExpression">
<summary>
Expression representing a build-time constant.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IConstantExpression.Value">
<summary>
Gets the constant value.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.ICopyBufferExpression">
<summary>
Expression equivalent to the <see cref="F:System.Reflection.Emit.OpCodes.Cpblk" /> instruction.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ICopyBufferExpression.Alignment">
<summary>
Gets the alignment of source and destination buffers.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ICopyBufferExpression.Destination">
<summary>
Gets the destination address.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ICopyBufferExpression.IsVolatile">
<summary>
Determines whether the buffers can be modified from a different thread.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ICopyBufferExpression.Length">
<summary>
Gets the number of bytes to be copied.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ICopyBufferExpression.Source">
<summary>
Gets the source address.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IExpression">
<summary>
Represents an expression or an instruction.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IExpression.ReturnType">
<summary>
Gets the type of the return value of the current expression,
or <see cref="T:System.Void" /> if the expression does not return anything (i.e. for pure instructions, for instance a <c>goto</c>
or <c>throw</c> instruction).
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IFieldExpression">
<summary>
Expression that represents a field.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IFieldExpression.Alignment">
<summary>
Gets the field alignment.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IFieldExpression.Field">
<summary>
Gets the field.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IFieldExpression.Instance">
<summary>
Gets the object containing the field, or <c>null</c> if the field is static.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IFieldExpression.IsVolatile">
<summary>
Determine whether the field is can be written by a different thread than the current one.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IGotoExpression">
<summary>
Unconditional branching instruction.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IGotoExpression.Target">
<summary>
Instruction block that must receive control.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IInitBufferExpression">
<summary>
Expression equivalent to the <see cref="F:System.Reflection.Emit.OpCodes.Initblk" /> instruction.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IInitBufferExpression.Alignment">
<summary>
Gets the alignment of the buffers.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IInitBufferExpression.Buffer">
<summary>
Gets the address of the buffer to be initialized.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IInitBufferExpression.IsVolatile">
<summary>
Determines whether the buffers can be modified from a different thread.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IInitBufferExpression.Length">
<summary>
Gets the number of bytes to be initialized.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.ILocalVariableExpression">
<summary>
Expression that represents a local variable.
</summary>
</member>
<member name="M:PostSharp.Reflection.Syntax.ILocalVariableExpression.GetPossibleAssignments">
<summary>
Returns an array of all possible assignments of the <see cref="T:PostSharp.Reflection.Syntax.ISyntaxLocalVariable" /> at this specific point of the program execution.
</summary>
<returns>List of possible assignments.</returns>
</member>
<member name="P:PostSharp.Reflection.Syntax.ILocalVariableExpression.LocalVariable">
<summary>
Gets the local variable.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ILocalVariableExpression.TrivialValue">
<summary>
Gets the value of the <see cref="T:PostSharp.Reflection.Syntax.ISyntaxLocalVariable" /> at this specific point of the program execution, in case this value
can be determined trivially.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IMetadataExpression">
<summary>
Expression that depends on a metadata declaration. This expression
is used when compiling the <c>typeof</c>, <c>sizeof</c> or <c>default</c> keywords of C#, among others.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IMetadataExpression.Declaration">
<summary>
Gets the declaration (<see cref="T:System.Type" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />).
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IMethodCallExpression">
<summary>
Expression representing a method call.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IMethodCallExpression.Arguments">
<summary>
Gets the method arguments.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IMethodCallExpression.ConstrainedType">
<summary>
Gets the type to which the virtual method call is constrained to (see <see cref="F:System.Reflection.Emit.OpCodes.Constrained" />).
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IMethodCallExpression.Instance">
<summary>
Gets the instance on which the method is called, or <c>null</c> if the method is static.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IMethodCallExpression.IsTail">
<summary>
Determines whether the call is a tail call (see <see cref="F:System.Reflection.Emit.OpCodes.Tailcall" />).
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IMethodCallExpression.IsVirtual">
<summary>
Determines whether the call is a virtual call.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IMethodCallExpression.Method">
<summary>
Gets the called method.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IMethodPointerExpression">
<summary>
Expression that represents a C-like pointer to a method.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IMethodPointerExpression.Instance">
<summary>
Gets the instance on which the method is defined, or <c>null</c> if the method is static.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IMethodPointerExpression.Method">
<summary>
Gets the method.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.INewArrayExpression">
<summary>
Expression that returns a new array.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.INewArrayExpression.ElementType">
<summary>
Gets the type of elements of the array.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.INewArrayExpression.Length">
<summary>
Gets the number of elements in the array.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.INewObjectExpression">
<summary>
Expression that creates a new object by invoking a constructor.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.INewObjectExpression.Arguments">
<summary>
Gets the arguments passed to the constructor.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.INewObjectExpression.Constructor">
<summary>
Gets the constructor.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IParameterExpression">
<summary>
Expression that represents a method parameter.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IParameterExpression.Parameter">
<summary>
Gets the parameter.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.ISequenceExpression">
<summary>
Sequence of instructions.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISequenceExpression.LocalVariableAssignments">
<summary>
Gets the list of local variables that the current sequence assigns, and the value to which the local variable is assigned when the current sequence
is fully executed.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISequenceExpression.Predecessors">
<summary>
Gets the list of sequences that can branch to the current sequence.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISequenceExpression.Successors">
<summary>
Gets the list of sequences to which the current sequence branch.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IStatementExpression">
<summary>
Represents a statement. A statement is the root of an expression tree.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IStatementExpression.Expression">
<summary>
Expression evaluated by the statement.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IStatementExpression.NextSibling">
<summary>
Gets a next sibling of the current expression within <see cref="T:PostSharp.Reflection.Syntax.IBlockExpression" />.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IStatementExpression.PreviousSibling">
<summary>
Gets a previous sibling of the current expression within <see cref="T:PostSharp.Reflection.Syntax.IBlockExpression" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.ISwitchExpression">
<summary>
Expression that represent a switch (conditional statement with multiple branches).
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISwitchExpression.Condition">
<summary>
Gets the condition expression.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISwitchExpression.Targets">
<summary>
Gets the list of target blocks.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.ISyntaxElement">
<summary>
Represents an element of the syntax tree representing a method body.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxElement.ParentElement">
<summary>
Gets the parent element in the tree.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxElement.ParentMethodBody">
<summary>
Gets the parent method body.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxElement.SyntaxElementKind">
<summary>
Gets the kind of syntax element.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler">
<summary>
Represents an exception handler (either <c>catch</c>, <c>finally</c> or <c>filter</c>) attached to a block.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler.ExceptionType">
<summary>
Gets the type of handled exception, or <c>null</c> if all exceptions are handled.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler.FilterBlock">
<summary>
Gets the exception filtering block, or <c>null</c> if all exceptions are handled.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler.FilterLocalVariable">
<summary>
Gets the local variable containing the exception in the <see cref="P:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler.FilterBlock" />.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler.HandlerBlock">
<summary>
Gets the exception handling block.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler.HandlerLocalVariable">
<summary>
Gets the local variable containing the exception in the <see cref="P:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler.HandlerBlock" />.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.ISyntaxLocalVariable">
<summary>
Expression that represents a local variable.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxLocalVariable.Name">
<summary>
Gets the name of the local variable.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxLocalVariable.Slot">
<summary>
Gets the ordinal of the local variable.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxLocalVariable.VariableType">
<summary>
Gets the type of the local variable.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.ISyntaxMethodBody">
<summary>
Represents the body of a method.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxMethodBody.Method">
<summary>
Gets the method whose body is represented by the current object.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.ISyntaxMethodBody.RootBlock">
<summary>
Gets the root instruction block of the method.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.ISyntaxReflectionService">
<summary>
Service that exposes the method <see cref="M:PostSharp.Reflection.Syntax.ISyntaxReflectionService.GetMethodBody(System.Reflection.MethodBase,PostSharp.Reflection.Syntax.SyntaxAbstractionLevel)" />, which allows to decompile
a method and get a AST representation.
</summary>
</member>
<member name="M:PostSharp.Reflection.Syntax.ISyntaxReflectionService.GetMethodBody(System.Reflection.MethodBase,PostSharp.Reflection.Syntax.SyntaxAbstractionLevel)">
<summary>
Decompiles a method and gets an AST representation of it.
</summary>
<param name="method">The method to decompile.</param>
<param name="abstractionLevel">The required level of abstraction and detail.</param>
<returns>AST representing the <paramref name="method" /> at the required level of abstraction and detail.</returns>
</member>
<member name="T:PostSharp.Reflection.Syntax.IUnaryExpression">
<summary>
Represents an expression with a single operand.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IUnaryExpression.Value">
<summary>
Operand of the unary expression.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IValueOfExpression">
<summary>
Expression that returns the value stored at an address. Equivalent to the C# keyword <c>*</c>.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IValueOfExpression.Alignment">
<summary>
Gets the alignment of the value at the address.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.IValueOfExpression.IsVolatile">
<summary>
Determines whether if the location at the address is volatile, i.e. if it can be changed
by a different thread than the current one.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.IZeroaryExpression">
<summary>
Expression with no operand.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.LocalVariableAssignment">
<summary>
Represents the assignment of a local variable to an expression.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.LocalVariableAssignment.Expression">
<summary>
Gets the expression to which the local variable is being assigned.
</summary>
</member>
<member name="P:PostSharp.Reflection.Syntax.LocalVariableAssignment.LocalVariable">
<summary>
Gets the local variable being assigned.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.SyntaxAbstractionLevel">
<summary>
Enumerates the level of abstraction and the level of details produced by the AST decompiler.
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxAbstractionLevel.Structure">
<summary>
Returns only the block structure (exception handlers).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxAbstractionLevel.ExpressionTree">
<summary>
Returns the expression tree.
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.SyntaxElementKind">
<summary>
Enumeration of kinds of syntax elements (<see cref="T:PostSharp.Reflection.Syntax.ISyntaxElement" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Add">
<summary>
Addition (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.AddChecked">
<summary>
Addition with overflow checking (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.And">
<summary>
Bitwise <c>And</c> (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.ArrayIndex">
<summary>
Element of an array (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" /> where <see cref="P:PostSharp.Reflection.Syntax.IBinaryExpression.Left" /> is the
array and <see cref="P:PostSharp.Reflection.Syntax.IBinaryExpression.Right" /> is the index).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.ArrayLength">
<summary>
Length of an array (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Assign">
<summary>
Assignment (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Goto">
<summary>
Unconditional branch (<see cref="T:PostSharp.Reflection.Syntax.IGotoExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Variable">
<summary>
Local variable expression (<see cref="T:PostSharp.Reflection.Syntax.ILocalVariableExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Conditional">
<summary>
Conditional expression (<see cref="T:PostSharp.Reflection.Syntax.IConditionalExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Cast">
<summary>
Cast (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" /> where <see cref="P:PostSharp.Reflection.Syntax.IExpression.ReturnType" /> is the destination type).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Divide">
<summary>
Division (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.LessThan">
<summary>
Less than (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.LessThanOrEqual">
<summary>
Less than or equal (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Modulo">
<summary>
Modulo (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.MultiplyChecked">
<summary>
Multiply with overflow checking (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Multiply">
<summary>
Multiply (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.GreaterThan">
<summary>
Greater than (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.GreaterThanOrEqual">
<summary>
Greater than (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Substract">
<summary>
Substract (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.SubstractChecked">
<summary>
Substract with overflow checking (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Parameter">
<summary>
Parameter (<see cref="T:PostSharp.Reflection.Syntax.IParameterExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.This">
<summary>
Current object (<c>this</c> keyword in C#, <see cref="T:PostSharp.Reflection.Syntax.IZeroaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.AddressOf">
<summary>
Referencing operator (<c>&amp;</c> in C#, see <see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Constant">
<summary>
Constant (<see cref="T:PostSharp.Reflection.Syntax.IConstantExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Equal">
<summary>
Equal (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Not">
<summary>
Logical negation (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Different">
<summary>
Different (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.ValueOf">
<summary>
Dereferencing operator (<c>*</c> in C#, see <see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Or">
<summary>
Bitwise <c>Or</c> (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Xor">
<summary>
Bitwise <c>And</c> (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.ShiftLeft">
<summary>
Bitwise shift to left (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.ShiftRight">
<summary>
Bitwise shit to right (<see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Negate">
<summary>
Bitwise negation (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.SafeCast">
<summary>
Safe cast (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" /> where <see cref="P:PostSharp.Reflection.Syntax.IExpression.ReturnType" /> is the destination type).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Unbox">
<summary>
Unbox (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Throw">
<summary>
Throw exception (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Field">
<summary>
Field (<see cref="T:PostSharp.Reflection.Syntax.IFieldExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Box">
<summary>
Box (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.NewArray">
<summary>
Create new array (<see cref="T:PostSharp.Reflection.Syntax.INewArrayExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.TypedReferenceValue">
<summary>
Get value of typed reference (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.CheckFinite">
<summary>
Check that the value is finite (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.MakeTypedReference">
<summary>
Make typed reference (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.ArgumentList">
<summary>
Get argument list (<see cref="T:PostSharp.Reflection.Syntax.IZeroaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.MethodPointer">
<summary>
Get pointer of method (<see cref="T:PostSharp.Reflection.Syntax.IMethodPointerExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.LocalAlloc">
<summary>
Allocate on local stack (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.DefaultValue">
<summary>
Default value for given type (<see cref="T:PostSharp.Reflection.Syntax.IMetadataExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.CopyBuffer">
<summary>
Copy buffer (<see cref="T:PostSharp.Reflection.Syntax.ICopyBufferExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.InitBuffer">
<summary>
Initialize buffer (<see cref="T:PostSharp.Reflection.Syntax.IInitBufferExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.LoadToken">
<summary>
Load metadata token (<see cref="T:PostSharp.Reflection.Syntax.IMetadataExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.SizeOf">
<summary>
Size of type (<see cref="T:PostSharp.Reflection.Syntax.IMetadataExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.TypedReferenceType">
<summary>
Get type of typed reference (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.ConvertChecked">
<summary>
Convert to integral type with overflow check (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Convert">
<summary>
Convert to integral type (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.MethodCall">
<summary>
Method call (<see cref="T:PostSharp.Reflection.Syntax.IMethodCallExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Return">
<summary>
Return (<see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.NewObject">
<summary>
Creates new object (<see cref="T:PostSharp.Reflection.Syntax.INewObjectExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Switch">
<summary>
Switch (<see cref="T:PostSharp.Reflection.Syntax.ISwitchExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Block">
<summary>
Instruction block (<see cref="T:PostSharp.Reflection.Syntax.IBlockExpression" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.CatchHandler">
<summary>
Catch exception handler (<see cref="T:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.FilterHandler">
<summary>
Filter exception handler (<see cref="T:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.FinallyHandler">
<summary>
Finally exception handler (<see cref="T:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.MethodBody">
<summary>
Method body (<see cref="T:PostSharp.Reflection.Syntax.ISyntaxMethodBody" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.LocalVariableDefinition">
<summary>
Local variable definition (<see cref="T:PostSharp.Reflection.Syntax.ISyntaxLocalVariable" />).
</summary>
</member>
<member name="F:PostSharp.Reflection.Syntax.SyntaxElementKind.Statement">
<summary>
Statement (<see cref="T:PostSharp.Reflection.Syntax.IStatementExpression" />).
</summary>
</member>
<member name="T:PostSharp.Reflection.Syntax.SyntaxTreeFormatter">
<summary>
Formats an <see cref="T:PostSharp.Reflection.Syntax.ISyntaxElement" /> to a textual representation, for debugging purposes.
</summary>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.#ctor(System.IO.TextWriter)">
<summary>
Initializes a new <see cref="T:PostSharp.Reflection.Syntax.SyntaxTreeFormatter" />.
</summary>
<param name="writer">A <see cref="T:System.IO.TextWriter" /> where the textual representation will be written.</param>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitBinaryExpression(PostSharp.Reflection.Syntax.IBinaryExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitBinaryExpression(PostSharp.Reflection.Syntax.IBinaryExpression)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitBlockExpression(PostSharp.Reflection.Syntax.IBlockExpression)">
<summary>
Visits an instruction block and, recursively, all syntax nodes.
</summary>
<param name="instructionBlock">The method body to be visited.</param>
<returns>
<paramref name="instructionBlock" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitConditionalExpression(PostSharp.Reflection.Syntax.IConditionalExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitConditionalExpression(PostSharp.Reflection.Syntax.IConditionalExpression)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitConstantExpression(PostSharp.Reflection.Syntax.IConstantExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IGotoExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitConstantExpression(PostSharp.Reflection.Syntax.IConstantExpression)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitCopyBufferExpression(PostSharp.Reflection.Syntax.ICopyBufferExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.ICopyBufferExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitCopyBufferExpression(PostSharp.Reflection.Syntax.ICopyBufferExpression)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitExceptionHandler(PostSharp.Reflection.Syntax.ISyntaxExceptionHandler)">
<summary>
Visits an exception handler and, recursively, the <see cref="P:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler.HandlerBlock" /> and <see cref="P:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler.FilterBlock" />
(if any).
</summary>
<param name="exceptionHandler">The exception handler to be visited.</param>
<returns>
<paramref name="exceptionHandler" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitFieldExpression(PostSharp.Reflection.Syntax.IFieldExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IFieldExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitFieldExpression(PostSharp.Reflection.Syntax.IFieldExpression)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitGotoExpression(PostSharp.Reflection.Syntax.IGotoExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IGotoExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitInitBufferExpression(PostSharp.Reflection.Syntax.IInitBufferExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IInitBufferExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitMetadataExpression(PostSharp.Reflection.Syntax.IMetadataExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IMetadataExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitMethodCallExpression(PostSharp.Reflection.Syntax.IMethodCallExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IMethodCallExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitNewArrayExpression(PostSharp.Reflection.Syntax.INewArrayExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.INewArrayExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitParameterExpression(PostSharp.Reflection.Syntax.IParameterExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IParameterExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitSwitchExpression(PostSharp.Reflection.Syntax.ISwitchExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.ISwitchExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitUnaryExpression(PostSharp.Reflection.Syntax.IUnaryExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitUnaryExpression(PostSharp.Reflection.Syntax.IUnaryExpression)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitVariableExpression(PostSharp.Reflection.Syntax.ILocalVariableExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.ILocalVariableExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeFormatter.VisitZeroaryExpression(PostSharp.Reflection.Syntax.IZeroaryExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IZeroaryExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="T:PostSharp.Reflection.Syntax.SyntaxTreeVisitor">
<summary>
Abstract implementation of a visitor of method bodies (<see cref="T:PostSharp.Reflection.Syntax.ISyntaxMethodBody" /> and <see cref="T:PostSharp.Reflection.Syntax.IExpression" />).
</summary>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Reflection.Syntax.SyntaxTreeVisitor</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitAddressOfExpression(PostSharp.Reflection.Syntax.IAddressOfExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IAddressOfExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitBinaryExpression(PostSharp.Reflection.Syntax.IBinaryExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IBinaryExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitBinaryExpression(PostSharp.Reflection.Syntax.IBinaryExpression)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitBlockExpression(PostSharp.Reflection.Syntax.IBlockExpression)">
<summary>
Visits an instruction block and, recursively, all syntax nodes.
</summary>
<param name="instructionBlock">The method body to be visited.</param>
<returns>
<paramref name="instructionBlock" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitConditionalExpression(PostSharp.Reflection.Syntax.IConditionalExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitConditionalExpression(PostSharp.Reflection.Syntax.IConditionalExpression)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitConstantExpression(PostSharp.Reflection.Syntax.IConstantExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IGotoExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitConstantExpression(PostSharp.Reflection.Syntax.IConstantExpression)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitCopyBufferExpression(PostSharp.Reflection.Syntax.ICopyBufferExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.ICopyBufferExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitCopyBufferExpression(PostSharp.Reflection.Syntax.ICopyBufferExpression)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitExceptionHandler(PostSharp.Reflection.Syntax.ISyntaxExceptionHandler)">
<summary>
Visits an exception handler and, recursively, the <see cref="P:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler.HandlerBlock" /> and <see cref="P:PostSharp.Reflection.Syntax.ISyntaxExceptionHandler.FilterBlock" />
(if any).
</summary>
<param name="exceptionHandler">The exception handler to be visited.</param>
<returns>
<paramref name="exceptionHandler" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitFieldExpression(PostSharp.Reflection.Syntax.IFieldExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IFieldExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitFieldExpression(PostSharp.Reflection.Syntax.IFieldExpression)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitGotoExpression(PostSharp.Reflection.Syntax.IGotoExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IGotoExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitInitBufferExpression(PostSharp.Reflection.Syntax.IInitBufferExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IInitBufferExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitLocalVariable(PostSharp.Reflection.Syntax.ISyntaxLocalVariable)">
<summary>
Visits a local variable definition.
</summary>
<param name="localVariable">The local variable to be visited.</param>
<returns>
<paramref name="localVariable" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitMetadataExpression(PostSharp.Reflection.Syntax.IMetadataExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IMetadataExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitMethodBody(PostSharp.Reflection.Syntax.ISyntaxMethodBody)">
<summary>
Visits a method body and, recursively, all syntax nodes.
</summary>
<param name="methodBody">The method body to be visited.</param>
<returns>
<paramref name="methodBody" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitMethodCallExpression(PostSharp.Reflection.Syntax.IMethodCallExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IMethodCallExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitMethodPointerExpression(PostSharp.Reflection.Syntax.IMethodPointerExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IMethodPointerExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitNewArrayExpression(PostSharp.Reflection.Syntax.INewArrayExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.INewArrayExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitNewObjectExpression(PostSharp.Reflection.Syntax.INewObjectExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.INewObjectExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitParameterExpression(PostSharp.Reflection.Syntax.IParameterExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IParameterExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitStatementExpression(PostSharp.Reflection.Syntax.IStatementExpression)">
<summary>
Visits an instruction block and, recursively, all syntax nodes.
</summary>
<param name="statementExpression">The statement to be visited.</param>
<returns>
<paramref name="statementExpression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitSwitchExpression(PostSharp.Reflection.Syntax.ISwitchExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.ISwitchExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitSyntaxElement(PostSharp.Reflection.Syntax.ISyntaxElement)">
<summary>
Visits a syntax element and, recursively, all children elements.
</summary>
<param name="syntaxElement">The element to be visited.</param>
<returns>
<paramref name="syntaxElement" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitUnaryExpression(PostSharp.Reflection.Syntax.IUnaryExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IUnaryExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitUnaryExpression(PostSharp.Reflection.Syntax.IUnaryExpression)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitValueOfExpression(PostSharp.Reflection.Syntax.IValueOfExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IValueOfExpression" /> and, recursively, all children elements.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitVariableExpression(PostSharp.Reflection.Syntax.ILocalVariableExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.ILocalVariableExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="M:PostSharp.Reflection.Syntax.SyntaxTreeVisitor.VisitZeroaryExpression(PostSharp.Reflection.Syntax.IZeroaryExpression)">
<summary>
Visits an expression of type <see cref="T:PostSharp.Reflection.Syntax.IZeroaryExpression" />.
</summary>
<param name="expression">The element to be visited.</param>
<returns>
<paramref name="expression" />, unless the override returns something else.</returns>
</member>
<member name="T:PostSharp.Serialization.ActivatorProvider">
<summary>
Provides instances of classes implementing the <see cref="T:PostSharp.Serialization.IActivator" /> interface. You should not use this class in user code.
</summary>
</member>
<member name="M:PostSharp.Serialization.ActivatorProvider.GetActivator(System.Type)">
<summary>
Gets an instance of a given class implementing the <see cref="T:PostSharp.Serialization.IActivator" /> interface.
</summary>
<param name="type">A type implementing the <see cref="T:PostSharp.Serialization.IActivator" /> interface.</param>
<returns>An instance of type <paramref name="type" />.</returns>
</member>
<member name="T:PostSharp.Serialization.ActivatorSecurityToken">
<summary>
Security token passed to the <see cref="M:PostSharp.Serialization.IActivator.CreateInstance(System.Type,PostSharp.Serialization.ActivatorSecurityToken)" /> method of the <see cref="T:PostSharp.Serialization.IActivator" /> interface.
</summary>
</member>
<member name="T:PostSharp.Serialization.ActivatorTypeAttribute">
<summary>
Custom attribute that, when applied to an assembly, points to a type in the assembly implementing <see cref="T:PostSharp.Serialization.IActivator" />.
</summary>
</member>
<member name="M:PostSharp.Serialization.ActivatorTypeAttribute.#ctor(System.Type)">
<summary>
Initializes a new <see cref="T:PostSharp.Serialization.ActivatorTypeAttribute" />.
</summary>
<param name="activatorType">A type derived from <see cref="T:PostSharp.Serialization.IActivator" /> in the current assembly. This type must be public and have
a default constructor.</param>
</member>
<member name="P:PostSharp.Serialization.ActivatorTypeAttribute.ActivatorType">
<summary>
Gets the activator type.
</summary>
</member>
<member name="T:PostSharp.Serialization.DottedString">
<summary>
Encapsulates dotted strings such as namespaces and type names, so their
serialization by <see cref="T:PostSharp.Serialization.PortableFormatter" /> can be optimized.
</summary>
</member>
<member name="M:PostSharp.Serialization.DottedString.#ctor(System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Serialization.DottedString" />.
</summary>
<param name="value">Value.</param>
</member>
<member name="M:PostSharp.Serialization.DottedString.Equals(PostSharp.Serialization.DottedString)">
<summary>
Determines whether the current<see cref="T:PostSharp.Serialization.DottedString" /> is equal to another one.
</summary>
<param name="other">Another <see cref="T:PostSharp.Serialization.DottedString" />.</param>
<returns>
<c>true</c> if the current <see cref="T:PostSharp.Serialization.DottedString" /> equals <c>other</c>, otherwise <c>false</c>.</returns>
</member>
<member name="M:PostSharp.Serialization.DottedString.Equals(System.Object)">
<summary>Indicates whether this instance and a specified object are equal.</summary>
<param name="obj">The object to compare with the current instance. </param>
<returns>true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false. </returns>
</member>
<member name="M:PostSharp.Serialization.DottedString.GetHashCode">
<summary>Returns the hash code for this instance.</summary>
<returns>A 32-bit signed integer that is the hash code for this instance.</returns>
</member>
<member name="P:PostSharp.Serialization.DottedString.IsNull">
<summary>
Determines whether the current <see cref="T:PostSharp.Serialization.DottedString" /> represents a <c>null</c> string.
</summary>
</member>
<member name="F:PostSharp.Serialization.DottedString.Null">
<summary>
Gets an instance of <see cref="T:PostSharp.Serialization.DottedString" /> representing a <c>null</c> string.
</summary>
</member>
<member name="M:PostSharp.Serialization.DottedString.op_Implicit(PostSharp.Serialization.DottedString)~System.String">
<summary>
Converts a <see cref="T:PostSharp.Serialization.DottedString" /> into a <see cref="T:System.String" />.
</summary>
<param name="dottedString">A <see cref="T:PostSharp.Serialization.DottedString" />.</param>
<returns>The <see cref="T:System.String" /> encapsulated by <paramref name="dottedString" />.</returns>
</member>
<member name="M:PostSharp.Serialization.DottedString.op_Implicit(System.String)~PostSharp.Serialization.DottedString">
<summary>
Converts a <see cref="T:System.String" /> into a <see cref="T:PostSharp.Serialization.DottedString" />.
</summary>
<param name="str">A <see cref="T:System.String" />.</param>
<returns>A <see cref="T:PostSharp.Serialization.DottedString" /> encapsulating <paramref name="str" />.</returns>
</member>
<member name="M:PostSharp.Serialization.DottedString.ToString">
<summary>Returns the fully qualified type name of this instance.</summary>
<returns>A <see cref="T:System.String" /> containing a fully qualified type name.</returns>
</member>
<member name="P:PostSharp.Serialization.DottedString.Value">
<summary>
Gets the string encapsulated by the current <see cref="T:PostSharp.Serialization.DottedString" />.
</summary>
</member>
<member name="T:PostSharp.Serialization.IActivator">
<summary>
Exposes a method <see cref="M:PostSharp.Serialization.IActivator.CreateInstance(System.Type,PostSharp.Serialization.ActivatorSecurityToken)" />, which allows to create an instance of a type using the <see cref="T:System.Activator" /> facility.
</summary>
</member>
<member name="M:PostSharp.Serialization.IActivator.CreateInstance(System.Type,PostSharp.Serialization.ActivatorSecurityToken)">
<summary>
Creates an instance of a give type.
</summary>
<param name="objectType">Type of object whose an instance is requested.</param>
<param name="securityToken">A security token.</param>
<returns>A new instance of type <paramref name="objectType" />.</returns>
</member>
<member name="T:PostSharp.Serialization.IArgumentsReader">
<summary>
Provides read access to the collection of deserialized arguments.
</summary>
</member>
<member name="M:PostSharp.Serialization.IArgumentsReader.GetValue``1(System.String,System.String)">
<summary>
Reads a value from the collection, and throws an exception if the value does not exist.
</summary>
<param name="name">Argument name.</param>
<param name="scope">An optional prefix of <paramref name="name" />, similar to a namespace.</param>
<typeparam name="T">Value type.</typeparam>
<returns>The value of the argument named <paramref name="name" /> in the given optional <paramref name="scope" />.</returns>
</member>
<member name="P:PostSharp.Serialization.IArgumentsReader.MetadataDispenser">
<summary>
When deserializing PostSharp aspects, gets the <see cref="T:PostSharp.Reflection.IMetadataDispenser" /> corresponding to the <see cref="P:PostSharp.Serialization.IArgumentsWriter.MetadataEmitter" />
used at build time.
</summary>
</member>
<member name="M:PostSharp.Serialization.IArgumentsReader.TryGetValue``1(System.String,``0@,System.String)">
<summary>
Attempts to read a value from the collection, and does not throw an exception if the value does not exist.
</summary>
<param name="name">Argument name.</param>
<param name="value">At output, set to the value of the argument named <paramref name="name" /> in the given optional <paramref name="scope" />.</param>
<param name="scope">An optional prefix of <paramref name="name" />, similar to a namespace.</param>
<typeparam name="T">Value type.</typeparam>
<returns>
<c>true</c> if the value is defined, otherwise <c>false</c>.</returns>
</member>
<member name="T:PostSharp.Serialization.IArgumentsWriter">
<summary>
Provides write access to a collection of arguments that need to be serialized.
</summary>
</member>
<member name="P:PostSharp.Serialization.IArgumentsWriter.MetadataEmitter">
<summary>
When serializing PostSharp access, gets a facility that can be used to serialize metadata (<c>System.Reflection</c>) objects
as MSIL, therefore making them transparent to obfuscation.
</summary>
</member>
<member name="M:PostSharp.Serialization.IArgumentsWriter.SetValue(System.String,System.Object,System.String)">
<summary>
Sets the value of an argument.
</summary>
<param name="name">Argument name.</param>
<param name="value">Argument value. The value can be <c>null</c> or must be serializable.</param>
<param name="scope">An optional prefix of <paramref name="name" />, similar to a namespace.</param>
</member>
<member name="T:PostSharp.Serialization.ImportSerializerAttribute">
<summary>
Custom attribute that, when applied to a serializable type, specifies that the serializer of this type has
a dependency on another serializer. The custom attribute can be applied at assembly level; it then
applies to all serializable types in this assembly.
</summary>
</member>
<member name="M:PostSharp.Serialization.ImportSerializerAttribute.#ctor(System.Type,System.Type)">
<summary>
Initializes a new <see cref="T:PostSharp.Serialization.ImportSerializerAttribute" />.
</summary>
<param name="objectType">Type of the object to be made serializable.</param>
<param name="serializerType">Serializer type. This type must implement <see cref="T:PostSharp.Serialization.ISerializer" /> or <see cref="T:PostSharp.Serialization.ISerializerFactory" />,
and must have a public default constructor. If <paramref name="serializerType" /> is a generic type, if must have the same number
of generic type parameters as <paramref name="objectType" />, and have a compatible set of constraints.</param>
</member>
<member name="P:PostSharp.Serialization.ImportSerializerAttribute.ObjectType">
<summary>
Gets the type of the object to be made serializable
</summary>
</member>
<member name="P:PostSharp.Serialization.ImportSerializerAttribute.SerializerType">
<summary>
Gets the serializer type.
</summary>
</member>
<member name="T:PostSharp.Serialization.ISerializationCallback">
<summary>
Interface that can be implemented by serializable classes.
It defines methods <see cref="M:PostSharp.Serialization.ISerializationCallback.OnDeserialized" /> and <see cref="M:PostSharp.Serialization.ISerializationCallback.OnSerializing" /> called during serialization.
</summary>
</member>
<member name="M:PostSharp.Serialization.ISerializationCallback.OnDeserialized">
<summary>
Method called after the object has been deserialized.
</summary>
</member>
<member name="M:PostSharp.Serialization.ISerializationCallback.OnSerializing">
<summary>
Method called before the object is being serialized.
</summary>
</member>
<member name="T:PostSharp.Serialization.ISerializer">
<summary>
Defines the semantics of an object serializer.
</summary>
</member>
<member name="M:PostSharp.Serialization.ISerializer.Convert(System.Object,System.Type)">
<summary>
Converts a value into a given target type.
</summary>
<param name="value">Value to be converted.</param>
<param name="targetType">target type.</param>
<returns>The <paramref name="value" /> converted to <paramref name="targetType" />.</returns>
</member>
<member name="M:PostSharp.Serialization.ISerializer.CreateInstance(System.Type,PostSharp.Serialization.IArgumentsReader)">
<summary>
Creates an instance of the given type.
</summary>
<param name="type">Type of the instance to be created.</param>
<param name="constructorArguments">Gives access to arguments required to create the instance.</param>
<returns>An instance of type <paramref name="type" /> initialized using <paramref name="constructorArguments" />.</returns>
</member>
<member name="M:PostSharp.Serialization.ISerializer.DeserializeFields(System.Object@,PostSharp.Serialization.IArgumentsReader)">
<summary>
Completes the second phase of deserialization by setting fields and other properties.
</summary>
<param name="obj">The object being deserialized.</param>
<param name="initializationArguments">Gives access to field values.</param>
</member>
<member name="P:PostSharp.Serialization.ISerializer.IsTwoPhase">
<summary>
Determines whether <see cref="M:PostSharp.Serialization.ISerializer.DeserializeFields(System.Object@,PostSharp.Serialization.IArgumentsReader)" /> should be invoked during deserialization.
The value is <c>false</c> if <see cref="M:PostSharp.Serialization.ISerializer.CreateInstance(System.Type,PostSharp.Serialization.IArgumentsReader)" /> return fully created object, <c>true</c> otherwise.
</summary>
</member>
<member name="M:PostSharp.Serialization.ISerializer.SerializeObject(System.Object,PostSharp.Serialization.IArgumentsWriter,PostSharp.Serialization.IArgumentsWriter)">
<summary>
Serializes an object
</summary>
<param name="obj"></param>
<param name="constructorArguments">Gives access to arguments that will be passed to the <see cref="M:PostSharp.Serialization.ISerializer.CreateInstance(System.Type,PostSharp.Serialization.IArgumentsReader)" /> method during deserialization.</param>
<param name="initializationArguments">Gives access to arguments that will be passed to the <see cref="M:PostSharp.Serialization.ISerializer.DeserializeFields(System.Object@,PostSharp.Serialization.IArgumentsReader)" /> method during deserialization.</param>
</member>
<member name="T:PostSharp.Serialization.ISerializerDiscoverer">
<summary>
Exposes a method <seealso cref="M:PostSharp.Serialization.ISerializerDiscoverer.DiscoverSerializers(System.Type)" /> that allows implementations
of the <seealso cref="T:PostSharp.Serialization.ISerializerFactoryProvider" /> interface to discover serializer types
for each type being serialized.
</summary>
</member>
<member name="M:PostSharp.Serialization.ISerializerDiscoverer.DiscoverSerializers(System.Type)">
<summary>
Invoked by <seealso cref="T:PostSharp.Serialization.PortableFormatter" /> once for every type that needs to be serialized,
before <seealso cref="M:PostSharp.Serialization.ISerializerFactoryProvider.GetSurrogateType(System.Type)" /> is invoked.
</summary>
<param name="objectType">Type being serialized.</param>
</member>
<member name="T:PostSharp.Serialization.ISerializerFactory">
<summary>
Defines a method <see cref="M:PostSharp.Serialization.ISerializerFactory.CreateSerializer(System.Type)" />, which creates instances of the <see cref="T:PostSharp.Serialization.ISerializer" /> interface for
given object types.
</summary>
</member>
<member name="M:PostSharp.Serialization.ISerializerFactory.CreateSerializer(System.Type)">
<summary>
Creates an instance of the <see cref="T:PostSharp.Serialization.ISerializer" /> interface for a given object type.
</summary>
<param name="objectType">Type of object being serialized or deserialized.</param>
<returns>A new instance implementing the <see cref="T:PostSharp.Serialization.ISerializer" /> interface.</returns>
</member>
<member name="T:PostSharp.Serialization.ISerializerFactoryProvider">
<summary>
Provides instances of the <see cref="T:PostSharp.Serialization.ISerializerFactory" /> interface given the object type.
</summary>
</member>
<member name="M:PostSharp.Serialization.ISerializerFactoryProvider.GetSerializerFactory(System.Type)">
<summary>
Gets the instance of <see cref="T:PostSharp.Serialization.ISerializerFactory" /></summary>
<param name="objectType">Type of object being serialized or deserialized. If a surrogate type has been specified during serialization,
this parameter is set to the surrogate type during deserialization.</param>
<returns>An instance of <see cref="T:PostSharp.Serialization.ISerializerFactory" /> able to serialize or deserialize <paramref name="objectType" />, or <c>null</c>
if there is no known serializer factory for this object. </returns>
</member>
<member name="M:PostSharp.Serialization.ISerializerFactoryProvider.GetSurrogateType(System.Type)">
<summary>
Gets the surrogate type for a given object type.
</summary>
<param name="objectType">Type of the object being serialized.</param>
<returns>The surrogate type for <paramref name="objectType" />, or <c>null</c> (or <paramref name="objectType" />) is <paramref name="objectType" />
does not require a surrogate type.</returns>
</member>
<member name="P:PostSharp.Serialization.ISerializerFactoryProvider.NextProvider">
<summary>
Gets the next provider in the chain.
</summary>
</member>
<member name="T:PostSharp.Serialization.PNonSerializedAttribute">
<summary>
Custom attribute that, when applied to a field of a class annotated with <see cref="T:PostSharp.Serialization.PSerializableAttribute" />,
specifies that this field should not be serialized.
</summary>
</member>
<member name="M:PostSharp.Serialization.PNonSerializedAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Serialization.PNonSerializedAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Serialization.PortableFormatter">
<summary>
A serializer designed to serialize the internal structure of types with support for cyclic object graphs.
The <see cref="T:PostSharp.Serialization.PortableFormatter" /> is very similar in function and design to the <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" />,
but is supported on most platforms and does not require full trust. Both formatters have similar usage:
<see cref="T:System.SerializableAttribute" /> is replaced by <see cref="T:PostSharp.Serialization.PSerializableAttribute" /> and
<see cref="T:System.NonSerializedAttribute" /> by <see cref="T:PostSharp.Serialization.PNonSerializedAttribute" />.
</summary>
</member>
<member name="M:PostSharp.Serialization.PortableFormatter.#ctor(PostSharp.Serialization.PortableSerializationBinder,PostSharp.Serialization.ISerializerFactoryProvider)">
<summary>
Initializes a new <see cref="T:PostSharp.Serialization.PortableFormatter" />.
</summary>
<param name="binder">A <see cref="T:PostSharp.Serialization.PortableSerializationBinder" /> customizing bindings between types and type names, or <c>null</c> to use the default implementation.</param>
<param name="serializerProvider">A custom implementation of <see cref="T:PostSharp.Serialization.ISerializerFactoryProvider" />, or <c>null</c> to use the default implementation.</param>
</member>
<member name="M:PostSharp.Serialization.PortableFormatter.Deserialize(System.IO.Stream)">
<summary>
Deserializes a stream.
</summary>
<param name="stream">A <see cref="T:System.IO.Stream" /> containing a serialized object graph.</param>
<returns>The root object of the object graph serialized in <paramref name="stream" />.</returns>
</member>
<member name="P:PostSharp.Serialization.PortableFormatter.MetadataDispenser">
<summary>
When deserializing PostSharp aspects, gets the <see cref="T:PostSharp.Reflection.IMetadataDispenser" /> corresponding to the <see cref="P:PostSharp.Serialization.IArgumentsWriter.MetadataEmitter" />
used at build time.
</summary>
</member>
<member name="P:PostSharp.Serialization.PortableFormatter.MetadataEmitter">
<summary>
When serializing PostSharp access, gets or sets a facility that can be used to serialize metadata (<c>System.Reflection</c>) objects
as MSIL, therefore making them transparent to obfuscation.
</summary>
</member>
<member name="M:PostSharp.Serialization.PortableFormatter.Serialize(System.Object,System.IO.Stream)">
<summary>
Serializes an object (and the complete graph whose this object is the root) into a <see cref="T:System.IO.Stream" />.
</summary>
<param name="obj">The object to serialize.</param>
<param name="stream">The stream where <paramref name="obj" /> needs to be serialized.</param>
</member>
<member name="T:PostSharp.Serialization.PortableSerializationBinder">
<summary>
Binds types to names and names to types. Used by the <see cref="T:PostSharp.Serialization.PortableFormatter" />.
</summary>
</member>
<member name="M:PostSharp.Serialization.PortableSerializationBinder.#ctor">
<summary>
Initializes a new instance of the <see cref="T:PostSharp.Serialization.PortableSerializationBinder" /> class.
</summary>
</member>
<member name="M:PostSharp.Serialization.PortableSerializationBinder.BindToName(System.Type,System.String@,System.String@)">
<summary>
Gets the name and the assembly name of a given <see cref="T:System.Type" />.
</summary>
<param name="type">The <see cref="T:System.Type" />.</param>
<param name="typeName">At output, the name of <paramref name="type" />.</param>
<param name="assemblyName">At output, the name of <paramref name="assemblyName" />.</param>
</member>
<member name="M:PostSharp.Serialization.PortableSerializationBinder.BindToType(System.String,System.String)">
<summary>
Gets a <see cref="T:System.Type" /> given a type name and an assembly name.
</summary>
<param name="typeName">The type name.</param>
<param name="assemblyName">The assembly name.</param>
<returns>The required <see cref="T:System.Type" />.</returns>
</member>
<member name="T:PostSharp.Serialization.PortableSerializationException">
<summary>
Exception thrown by the <see cref="T:PostSharp.Serialization.PortableFormatter" />.
</summary>
</member>
<member name="M:PostSharp.Serialization.PortableSerializationException.#ctor">
<summary>
Initializes a new <see cref="T:PostSharp.Serialization.PortableSerializationException" />.
</summary>
</member>
<member name="M:PostSharp.Serialization.PortableSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Deserialization constructor.
</summary>
<param name="info"></param>
<param name="context"></param>
</member>
<member name="M:PostSharp.Serialization.PortableSerializationException.#ctor(System.String)">
<summary>
Initializes a new <see cref="T:PostSharp.Serialization.PortableSerializationException" /> and specifies the message.
</summary>
<param name="message">Message.</param>
</member>
<member name="M:PostSharp.Serialization.PortableSerializationException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new <see cref="T:PostSharp.Serialization.PortableSerializationException" /> and specifies the message and inner exception.
</summary>
<param name="message">Message.</param>
<param name="inner">Inner exception.</param>
</member>
<member name="T:PostSharp.Serialization.PSerializableAttribute">
<summary>
Custom attribute that, when applied to a type, causes PostSharp to generate a serializer for use by the <see cref="T:PostSharp.Serialization.PortableFormatter" />.
</summary>
</member>
<member name="M:PostSharp.Serialization.PSerializableAttribute.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Serialization.PSerializableAttribute</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Serialization.ReferenceTypeSerializer">
<summary>
Base serializer for all reference types.
</summary>
</member>
<member name="M:PostSharp.Serialization.ReferenceTypeSerializer.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Serialization.ReferenceTypeSerializer</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Serialization.ReferenceTypeSerializer.Convert(System.Object,System.Type)">
<summary>
Converts a value into a given target type.
</summary>
<param name="value">Value to be converted.</param>
<param name="targetType">target type.</param>
<returns>The <paramref name="value" /> converted to <paramref name="targetType" />.</returns>
</member>
<member name="M:PostSharp.Serialization.ReferenceTypeSerializer.CreateInstance(System.Type,PostSharp.Serialization.IArgumentsReader)">
<summary>
Creates an instance of the given type.
</summary>
<param name="type">Type of the instance to be created.</param>
<param name="constructorArguments">Gives access to arguments required to create the instance.</param>
<returns>An instance of type <paramref name="type" /> initialized using <paramref name="constructorArguments" />.</returns>
</member>
<member name="M:PostSharp.Serialization.ReferenceTypeSerializer.DeserializeFields(System.Object,PostSharp.Serialization.IArgumentsReader)">
<summary>
Completes the second phase of deserialization by setting fields and other properties.
</summary>
<param name="obj">The object being deserialized.</param>
<param name="initializationArguments">Gives access to field values.</param>
</member>
<member name="M:PostSharp.Serialization.ReferenceTypeSerializer.SerializeObject(System.Object,PostSharp.Serialization.IArgumentsWriter,PostSharp.Serialization.IArgumentsWriter)">
<summary>
Serializes an object
</summary>
<param name="obj"></param>
<param name="constructorArguments">Gives access to arguments that will be passed to the <see cref="M:PostSharp.Serialization.ReferenceTypeSerializer.CreateInstance(System.Type,PostSharp.Serialization.IArgumentsReader)" /> method during deserialization.</param>
<param name="initializationArguments">Gives access to arguments that will be passed to the <see cref="M:PostSharp.Serialization.ReferenceTypeSerializer.DeserializeFields(System.Object,PostSharp.Serialization.IArgumentsReader)" /> method during deserialization.</param>
</member>
<member name="T:PostSharp.Serialization.SerializationServices">
<summary>
Provides some utility method for the current namespace.
</summary>
</member>
<member name="M:PostSharp.Serialization.SerializationServices.GetSerializationException(PostSharp.Reflection.LocationInfo)">
<summary>
Checks whether a given <see cref="T:PostSharp.Reflection.LocationInfo" /> can be safely serialized.
</summary>
<param name="locationInfo">The declaration to be serialized.</param>
<returns>
<c>null</c> if <paramref name="locationInfo" /> can be safely serialized, otherwise an exception where the text describes
the reason why the declaration is not serializable.</returns>
</member>
<member name="M:PostSharp.Serialization.SerializationServices.GetSerializationException(System.Reflection.MemberInfo)">
<summary>
Checks whether a given <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.PropertyInfo" />,
<see cref="T:System.Reflection.EventInfo" /> or <see cref="T:System.Type" /> can be safely serialized.
</summary>
<param name="memberInfo">The declaration to be serialized.</param>
<returns>
<c>null</c> if <paramref name="memberInfo" /> can be safely serialized, otherwise an exception where the text describes
the reason why the declaration is not serializable.</returns>
</member>
<member name="M:PostSharp.Serialization.SerializationServices.GetSerializationException(System.Reflection.ParameterInfo)">
<summary>
Checks whether a given <see cref="T:System.Reflection.ParameterInfo" /> can be safely serialized.
</summary>
<param name="parameterInfo">The declaration to be serialized.</param>
<returns>
<c>null</c> if <paramref name="parameterInfo" /> can be safely serialized, otherwise an exception where the text describes
the reason why the declaration is not serializable.</returns>
</member>
<member name="T:PostSharp.Serialization.SerializerAttribute">
<summary>
Custom attribute that, when applied to a type, specifies its serializer for use by the <see cref="T:PostSharp.Serialization.PortableFormatter" />.
</summary>
</member>
<member name="M:PostSharp.Serialization.SerializerAttribute.#ctor(System.Type)">
<summary>
Initializes a new <see cref="T:PostSharp.Serialization.SerializerAttribute" />.
</summary>
<param name="serializerType">Serializer type. This type must implement <see cref="T:PostSharp.Serialization.ISerializer" /> or <see cref="T:PostSharp.Serialization.ISerializerFactory" />,
and must have a public default constructor. If <paramref name="serializerType" /> is a generic type, if must have the same number
of generic type parameters as the target type, and have a compatible set of constraints.</param>
</member>
<member name="P:PostSharp.Serialization.SerializerAttribute.SerializerType">
<summary>
Gets the serializer type.
</summary>
</member>
<member name="T:PostSharp.Serialization.SerializerFactoryProvider">
<summary>
Provides instances of the <see cref="T:PostSharp.Serialization.ISerializerFactory" /> interface for object types that have been previously registered
using <see cref="M:PostSharp.Serialization.SerializerFactoryProvider.AddSerializer(System.Type,System.Type)" />.
</summary>
</member>
<member name="M:PostSharp.Serialization.SerializerFactoryProvider.#ctor(PostSharp.Serialization.ISerializerFactoryProvider,PostSharp.Serialization.ActivatorProvider)">
<summary>
Initializes a new <see cref="T:PostSharp.Serialization.SerializerFactoryProvider" />.
</summary>
<param name="nextProvider">The next provider in the chain, or <c>null</c> if there is none.</param>
<param name="activatorProvider"></param>
</member>
<member name="M:PostSharp.Serialization.SerializerFactoryProvider.AddSerializer``2">
<summary>
Maps an object type to a serializer type (using generic type parameters).
</summary>
<typeparam name="ObjectType">Type of the serialized object.</typeparam>
<typeparam name="SerializerType">Type of the serializer.</typeparam>
</member>
<member name="M:PostSharp.Serialization.SerializerFactoryProvider.AddSerializer(System.Type,System.Type)">
<summary>
Maps an object type to a serializer type.
</summary>
<param name="objectType">Type of the serialized object.</param>
<param name="serializerType">Type of the serializer (must be derived from <see cref="T:PostSharp.Serialization.ISerializer" />).</param>
</member>
<member name="F:PostSharp.Serialization.SerializerFactoryProvider.BuiltIn">
<summary>
Gets the <see cref="T:PostSharp.Serialization.SerializerFactoryProvider" /> instance that supports built-in types.
</summary>
</member>
<member name="M:PostSharp.Serialization.SerializerFactoryProvider.GetSerializerFactory(System.Type)">
<summary>
Gets the instance of <see cref="T:PostSharp.Serialization.ISerializerFactory" /></summary>
<param name="objectType">Type of object being serialized or deserialized. If a surrogate type has been specified during serialization,
this parameter is set to the surrogate type during deserialization.</param>
<returns>An instance of <see cref="T:PostSharp.Serialization.ISerializerFactory" /> able to serialize or deserialize <paramref name="objectType" />, or <c>null</c>
if there is no known serializer factory for this object. </returns>
</member>
<member name="M:PostSharp.Serialization.SerializerFactoryProvider.GetSurrogateType(System.Type)">
<summary>
Gets the surrogate type for a given object type.
</summary>
<param name="objectType">Type of the object being serialized.</param>
<returns>The surrogate type for <paramref name="objectType" />, or <c>null</c> (or <paramref name="objectType" />) is <paramref name="objectType" />
does not require a surrogate type.</returns>
</member>
<member name="M:PostSharp.Serialization.SerializerFactoryProvider.MakeReadOnly">
<summary>
Forbids further changes in the current <see cref="T:PostSharp.Serialization.SerializerFactoryProvider" />.
</summary>
</member>
<member name="P:PostSharp.Serialization.SerializerFactoryProvider.NextProvider">
<summary>
Gets the next provider in the chain.
</summary>
</member>
<member name="T:PostSharp.Serialization.ValueTypeSerializer`1">
<summary>
Base serializer for all value types.
</summary>
<typeparam name="T">
<markup>
<include item="SMCMissingParamTag">
<parameter>typeparam</parameter>
<parameter>T</parameter>
<parameter>T:PostSharp.Serialization.ValueTypeSerializer`1</parameter>
</include>
</markup>
</typeparam>
</member>
<member name="M:PostSharp.Serialization.ValueTypeSerializer`1.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Serialization.ValueTypeSerializer`1</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Serialization.ValueTypeSerializer`1.Convert(System.Object,System.Type)">
<summary>
Converts a value into a given target type.
</summary>
<param name="value">Value to be converted.</param>
<param name="targetType">target type.</param>
<returns>The <paramref name="value" /> converted to <paramref name="targetType" />.</returns>
</member>
<member name="M:PostSharp.Serialization.ValueTypeSerializer`1.DeserializeObject(PostSharp.Serialization.IArgumentsReader)">
<summary>
Creates an instance of the given type.
</summary>
<param name="constructorArguments">Gives access to arguments required to create the instance.</param>
<returns>An instance of type <typeparamref name="T" /> initialized using <paramref name="constructorArguments" />.</returns>
</member>
<member name="M:PostSharp.Serialization.ValueTypeSerializer`1.SerializeObject(`0,PostSharp.Serialization.IArgumentsWriter)">
<summary>
Serializes an object
</summary>
<param name="obj"></param>
<param name="constructorArguments">Gives access to arguments that will be passed to the <see cref="M:PostSharp.Serialization.ValueTypeSerializer`1.DeserializeObject(PostSharp.Serialization.IArgumentsReader)" /> method during deserialization.</param>
</member>
</members>
</doc>