| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <?xml version="1.0" encoding="utf-8"?>
- <Type Name="NewArrayExpression" FullName="System.Linq.Expressions.NewArrayExpression">
- <TypeSignature Language="C#" Value="public class NewArrayExpression : System.Linq.Expressions.Expression" />
- <TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit NewArrayExpression extends System.Linq.Expressions.Expression" />
- <AssemblyInfo>
- <AssemblyName>System.Core</AssemblyName>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <Base>
- <BaseTypeName>System.Linq.Expressions.Expression</BaseTypeName>
- </Base>
- <Interfaces />
- <Attributes>
- <Attribute>
- <AttributeName>System.Diagnostics.DebuggerTypeProxy(typeof(System.Linq.Expressions.Expression/NewArrayExpressionProxy))</AttributeName>
- </Attribute>
- </Attributes>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The following table shows the different factory methods that you can use to create a <see cref="T:System.Linq.Expressions.NewArrayExpression" /> depending on the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> you require.</para>
- <list type="table">
- <listheader>
- <item>
- <term>
- <para>
- <see cref="P:System.Linq.Expressions.Expression.NodeType" />
- </para>
- </term>
- <description>
- <para>Factory Methods</para>
- </description>
- </item>
- </listheader>
- <item>
- <term>
- <para>
- <see cref="F:System.Linq.Expressions.ExpressionType.NewArrayBounds" />
- </para>
- </term>
- <description>
- <para>
- <see cref="Overload:System.Linq.Expressions.Expression.NewArrayBounds" />
- </para>
- </description>
- </item>
- <item>
- <term>
- <para>
- <see cref="F:System.Linq.Expressions.ExpressionType.NewArrayInit" />
- </para>
- </term>
- <description>
- <para>
- <see cref="Overload:System.Linq.Expressions.Expression.NewArrayInit" />
- </para>
- </description>
- </item>
- </list>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Represents creating a new array and possibly initializing the elements of the new array.</para>
- </summary>
- </Docs>
- <Members>
- <Member MemberName="Accept">
- <MemberSignature Language="C#" Value="protected override System.Linq.Expressions.Expression Accept (System.Linq.Expressions.ExpressionVisitor visitor);" />
- <MemberSignature Language="ILAsm" Value=".method familyorassemblyhidebysig virtual instance class System.Linq.Expressions.Expression Accept(class System.Linq.Expressions.ExpressionVisitor visitor) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.Expressions.Expression</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="visitor" Type="System.Linq.Expressions.ExpressionVisitor" />
- </Parameters>
- <Docs>
- <remarks>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This default implementation for <see cref="F:System.Linq.Expressions.ExpressionType.Extension" /> nodes calls <see cref="M:System.Linq.Expressions.ExpressionVisitor.VisitExtension(System.Linq.Expressions.Expression)" />. Override this method to call into a more specific method on a derived visitor class of the <see cref="T:System.Linq.Expressions.ExpressionVisitor" /> class. However, it should still support unknown visitors by calling <see cref="M:System.Linq.Expressions.ExpressionVisitor.VisitExtension(System.Linq.Expressions.Expression)" />. </para>
- </remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Dispatches to the specific visit method for this node type. For example, <see cref="T:System.Linq.Expressions.MethodCallExpression" /> calls the <see cref="M:System.Linq.Expressions.ExpressionVisitor.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)" />.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The result of visiting this node.</para>
- </returns>
- <param name="visitor">
- <attribution license="cc4" from="Microsoft" modified="false" />The visitor to visit this node with.</param>
- </Docs>
- </Member>
- <Member MemberName="Expressions">
- <MemberSignature Language="C#" Value="public System.Collections.ObjectModel.ReadOnlyCollection<System.Linq.Expressions.Expression> Expressions { get; }" />
- <MemberSignature Language="ILAsm" Value=".property instance class System.Collections.ObjectModel.ReadOnlyCollection`1<class System.Linq.Expressions.Expression> Expressions" />
- <MemberType>Property</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>3.5.0.0</AssemblyVersion>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Collections.ObjectModel.ReadOnlyCollection<System.Linq.Expressions.Expression></ReturnType>
- </ReturnValue>
- <Docs>
- <value>To be added.</value>
- <remarks>To be added.</remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Gets the bounds of the array if the value of the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property is <see cref="F:System.Linq.Expressions.ExpressionType.NewArrayBounds" />, or the values to initialize the elements of the new array if the value of the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property is <see cref="F:System.Linq.Expressions.ExpressionType.NewArrayInit" />.</para>
- </summary>
- </Docs>
- </Member>
- <Member MemberName="Type">
- <MemberSignature Language="C#" Value="public override sealed Type Type { get; }" />
- <MemberSignature Language="ILAsm" Value=".property instance class System.Type Type" />
- <MemberType>Property</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Type</ReturnType>
- </ReturnValue>
- <Docs>
- <value>To be added.</value>
- <remarks>To be added.</remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Gets the static type of the expression that this <see cref="T:System.Linq.Expressions.Expression" /> represents.</para>
- </summary>
- </Docs>
- </Member>
- <Member MemberName="Update">
- <MemberSignature Language="C#" Value="public System.Linq.Expressions.NewArrayExpression Update (System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> expressions);" />
- <MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Linq.Expressions.NewArrayExpression Update(class System.Collections.Generic.IEnumerable`1<class System.Linq.Expressions.Expression> expressions) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Linq.Expressions.NewArrayExpression</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="expressions" Type="System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression>" />
- </Parameters>
- <Docs>
- <remarks>To be added.</remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>This expression if no children are changed or an expression with the updated children.</para>
- </returns>
- <param name="expressions">
- <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Linq.Expressions.NewArrayExpression.Expressions" /> property of the result.</param>
- </Docs>
- </Member>
- </Members>
- </Type>
|