MethodCallCodeFragment.Chain Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
Chain(MethodCallCodeFragment) |
Crea una cadena de métodos de este método a otra. |
Chain(MethodInfo, Object[]) |
Crea una cadena de métodos de este método a otra. |
Chain(String, Object[]) |
Obsoletos.
Crea una cadena de métodos de este método a otra. |
Chain(MethodCallCodeFragment)
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
Crea una cadena de métodos de este método a otra.
public virtual Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment Chain (Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment call);
abstract member Chain : Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment -> Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment
override this.Chain : Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment -> Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment
Public Overridable Function Chain (call As MethodCallCodeFragment) As MethodCallCodeFragment
Parámetros
El método siguiente.
Devoluciones
Nuevo fragmento que representa la cadena de métodos.
Se aplica a
Chain(MethodInfo, Object[])
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
Crea una cadena de métodos de este método a otra.
public virtual Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment Chain (System.Reflection.MethodInfo methodInfo, params object[] arguments);
public virtual Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment Chain (System.Reflection.MethodInfo methodInfo, params object?[] arguments);
abstract member Chain : System.Reflection.MethodInfo * obj[] -> Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment
override this.Chain : System.Reflection.MethodInfo * obj[] -> Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment
Public Overridable Function Chain (methodInfo As MethodInfo, ParamArray arguments As Object()) As MethodCallCodeFragment
Parámetros
- methodInfo
- MethodInfo
El método es MethodInfo.
- arguments
- Object[]
Argumentos de la siguiente llamada al método.
Devoluciones
Nuevo fragmento que representa la cadena de métodos.
Se aplica a
Chain(String, Object[])
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
- Source:
- MethodCallCodeFragment.cs
Precaución
Use the overload accepting a MethodInfo
Crea una cadena de métodos de este método a otra.
public virtual Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment Chain (string method, params object[] arguments);
[System.Obsolete("Use the overload accepting a MethodInfo")]
public virtual Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment Chain (string method, params object[] arguments);
public virtual Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment Chain (string method, params object?[] arguments);
abstract member Chain : string * obj[] -> Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment
override this.Chain : string * obj[] -> Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment
[<System.Obsolete("Use the overload accepting a MethodInfo")>]
abstract member Chain : string * obj[] -> Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment
override this.Chain : string * obj[] -> Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment
Public Overridable Function Chain (method As String, ParamArray arguments As Object()) As MethodCallCodeFragment
Parámetros
- method
- String
Nombre del método siguiente.
- arguments
- Object[]
Argumentos de la siguiente llamada al método.
Devoluciones
Nuevo fragmento que representa la cadena de métodos.
- Atributos