ICSharpHelper.Fragment Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Fragment(AttributeCodeFragment) |
Génère une spécification d’attribut. |
Fragment(MethodCallCodeFragment) |
Génère un fragment de code d’appel de méthode. |
Fragment(PropertyAccessorCodeFragment) |
Génère un fragment de code lambda d’accesseur de propriété. |
Fragment(IMethodCallCodeFragment, Int32) |
Génère un fragment de code d’appel de méthode. |
Fragment(NestedClosureCodeFragment, Int32) |
Génère un fragment de code lambda. |
Fragment(IMethodCallCodeFragment, String, Boolean) |
Génère un fragment de code d’appel de méthode. |
Fragment(MethodCallCodeFragment, String, Boolean) |
Génère un fragment de code d’appel de méthode. |
Fragment(AttributeCodeFragment)
- Source:
- ICSharpHelper.cs
- Source:
- ICSharpHelper.cs
- Source:
- ICSharpHelper.cs
Génère une spécification d’attribut.
public string Fragment (Microsoft.EntityFrameworkCore.Design.AttributeCodeFragment fragment);
abstract member Fragment : Microsoft.EntityFrameworkCore.Design.AttributeCodeFragment -> string
Public Function Fragment (fragment As AttributeCodeFragment) As String
Paramètres
- fragment
- AttributeCodeFragment
Fragment de code d’attribut.
Retours
Code de spécification d’attribut.
S’applique à
Fragment(MethodCallCodeFragment)
- Source:
- ICSharpHelper.cs
Génère un fragment de code d’appel de méthode.
public string Fragment (Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment fragment);
abstract member Fragment : Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment -> string
Public Function Fragment (fragment As MethodCallCodeFragment) As String
Paramètres
- fragment
- MethodCallCodeFragment
Appel de méthode.
Retours
Fragment.
S’applique à
Fragment(PropertyAccessorCodeFragment)
- Source:
- ICSharpHelper.cs
- Source:
- ICSharpHelper.cs
- Source:
- ICSharpHelper.cs
Génère un fragment de code lambda d’accesseur de propriété.
public string Fragment (Microsoft.EntityFrameworkCore.Design.PropertyAccessorCodeFragment fragment);
abstract member Fragment : Microsoft.EntityFrameworkCore.Design.PropertyAccessorCodeFragment -> string
Public Function Fragment (fragment As PropertyAccessorCodeFragment) As String
Paramètres
- fragment
- PropertyAccessorCodeFragment
Accesseur de propriété lambda.
Retours
Représentation par code de l’lambda.
S’applique à
Fragment(IMethodCallCodeFragment, Int32)
- Source:
- ICSharpHelper.cs
- Source:
- ICSharpHelper.cs
- Source:
- ICSharpHelper.cs
Génère un fragment de code d’appel de méthode.
public string Fragment (Microsoft.EntityFrameworkCore.Design.IMethodCallCodeFragment? fragment, int indent = 0);
abstract member Fragment : Microsoft.EntityFrameworkCore.Design.IMethodCallCodeFragment * int -> string
Public Function Fragment (fragment As IMethodCallCodeFragment, Optional indent As Integer = 0) As String
Paramètres
- fragment
- IMethodCallCodeFragment
Appel de méthode. Si la valeur est null, aucun code n’est généré.
- indent
- Int32
Niveau de retrait à utiliser lorsque plusieurs lignes sont générées.
Retours
Fragment.
S’applique à
Fragment(NestedClosureCodeFragment, Int32)
- Source:
- ICSharpHelper.cs
- Source:
- ICSharpHelper.cs
- Source:
- ICSharpHelper.cs
Génère un fragment de code lambda.
public string Fragment (Microsoft.EntityFrameworkCore.Design.NestedClosureCodeFragment fragment, int indent = 0);
abstract member Fragment : Microsoft.EntityFrameworkCore.Design.NestedClosureCodeFragment * int -> string
Public Function Fragment (fragment As NestedClosureCodeFragment, Optional indent As Integer = 0) As String
Paramètres
- fragment
- NestedClosureCodeFragment
Lambda.
- indent
- Int32
Niveau de retrait à utiliser lorsque plusieurs lignes sont générées.
Retours
Fragment.
S’applique à
Fragment(IMethodCallCodeFragment, String, Boolean)
- Source:
- ICSharpHelper.cs
- Source:
- ICSharpHelper.cs
- Source:
- ICSharpHelper.cs
Génère un fragment de code d’appel de méthode.
public string Fragment (Microsoft.EntityFrameworkCore.Design.IMethodCallCodeFragment fragment, string? instanceIdentifier, bool typeQualified);
abstract member Fragment : Microsoft.EntityFrameworkCore.Design.IMethodCallCodeFragment * string * bool -> string
Public Function Fragment (fragment As IMethodCallCodeFragment, instanceIdentifier As String, typeQualified As Boolean) As String
Paramètres
- fragment
- IMethodCallCodeFragment
Appel de méthode.
- instanceIdentifier
- String
Identificateur sur lequel l’appel de méthode sera généré.
- typeQualified
- Boolean
true
si l’appel de méthode doit être qualifié de type, false
pour la syntaxe instance/extension.
Retours
Fragment.
S’applique à
Fragment(MethodCallCodeFragment, String, Boolean)
- Source:
- ICSharpHelper.cs
Génère un fragment de code d’appel de méthode.
public string Fragment (Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment fragment, string? instanceIdentifier = default, bool typeQualified = false);
abstract member Fragment : Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment * string * bool -> string
Public Function Fragment (fragment As MethodCallCodeFragment, Optional instanceIdentifier As String = Nothing, Optional typeQualified As Boolean = false) As String
Paramètres
- fragment
- MethodCallCodeFragment
Appel de méthode.
- instanceIdentifier
- String
Identificateur sur lequel l’appel de méthode sera généré.
- typeQualified
- Boolean
true
si l’appel de méthode doit être qualifié de type, false
pour la syntaxe instance/extension.
Retours
Fragment.