ICSharpHelper.Fragment Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
Fragment(AttributeCodeFragment) |
Generuje specyfikację atrybutu. |
Fragment(MethodCallCodeFragment) |
Generuje fragment kodu wywołania metody. |
Fragment(PropertyAccessorCodeFragment) |
Generuje fragment kodu lambda metody dostępu właściwości. |
Fragment(IMethodCallCodeFragment, Int32) |
Generuje fragment kodu wywołania metody. |
Fragment(NestedClosureCodeFragment, Int32) |
Generuje fragment kodu lambda. |
Fragment(IMethodCallCodeFragment, String, Boolean) |
Generuje fragment kodu wywołania metody. |
Fragment(MethodCallCodeFragment, String, Boolean) |
Generuje fragment kodu wywołania metody. |
Fragment(AttributeCodeFragment)
- Źródło:
- ICSharpHelper.cs
- Źródło:
- ICSharpHelper.cs
- Źródło:
- ICSharpHelper.cs
Generuje specyfikację atrybutu.
public string Fragment (Microsoft.EntityFrameworkCore.Design.AttributeCodeFragment fragment);
abstract member Fragment : Microsoft.EntityFrameworkCore.Design.AttributeCodeFragment -> string
Public Function Fragment (fragment As AttributeCodeFragment) As String
Parametry
- fragment
- AttributeCodeFragment
Fragment kodu atrybutu.
Zwraca
Kod specyfikacji atrybutu.
Dotyczy
Fragment(MethodCallCodeFragment)
- Źródło:
- ICSharpHelper.cs
Generuje fragment kodu wywołania metody.
public string Fragment (Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment fragment);
abstract member Fragment : Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment -> string
Public Function Fragment (fragment As MethodCallCodeFragment) As String
Parametry
- fragment
- MethodCallCodeFragment
Wywołanie metody.
Zwraca
Fragment.
Dotyczy
Fragment(PropertyAccessorCodeFragment)
- Źródło:
- ICSharpHelper.cs
- Źródło:
- ICSharpHelper.cs
- Źródło:
- ICSharpHelper.cs
Generuje fragment kodu lambda metody dostępu właściwości.
public string Fragment (Microsoft.EntityFrameworkCore.Design.PropertyAccessorCodeFragment fragment);
abstract member Fragment : Microsoft.EntityFrameworkCore.Design.PropertyAccessorCodeFragment -> string
Public Function Fragment (fragment As PropertyAccessorCodeFragment) As String
Parametry
- fragment
- PropertyAccessorCodeFragment
Właściwość accessor lambda.
Zwraca
Reprezentacja kodu lambda.
Dotyczy
Fragment(IMethodCallCodeFragment, Int32)
- Źródło:
- ICSharpHelper.cs
- Źródło:
- ICSharpHelper.cs
- Źródło:
- ICSharpHelper.cs
Generuje fragment kodu wywołania metody.
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
Parametry
- fragment
- IMethodCallCodeFragment
Wywołanie metody. Jeśli wartość null, nie jest generowany żaden kod.
- indent
- Int32
Poziom wcięcia używany podczas generowania wielu wierszy.
Zwraca
Fragment.
Dotyczy
Fragment(NestedClosureCodeFragment, Int32)
- Źródło:
- ICSharpHelper.cs
- Źródło:
- ICSharpHelper.cs
- Źródło:
- ICSharpHelper.cs
Generuje fragment kodu 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
Parametry
- fragment
- NestedClosureCodeFragment
Lambda.
- indent
- Int32
Poziom wcięcia używany podczas generowania wielu wierszy.
Zwraca
Fragment.
Dotyczy
Fragment(IMethodCallCodeFragment, String, Boolean)
- Źródło:
- ICSharpHelper.cs
- Źródło:
- ICSharpHelper.cs
- Źródło:
- ICSharpHelper.cs
Generuje fragment kodu wywołania metody.
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
Parametry
- fragment
- IMethodCallCodeFragment
Wywołanie metody.
- instanceIdentifier
- String
Identyfikator, na którym zostanie wygenerowane wywołanie metody.
- typeQualified
- Boolean
true
jeśli wywołanie metody powinno być kwalifikowane pod kątem typu, false
dla składni wystąpienia/rozszerzenia.
Zwraca
Fragment.
Dotyczy
Fragment(MethodCallCodeFragment, String, Boolean)
- Źródło:
- ICSharpHelper.cs
Generuje fragment kodu wywołania metody.
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
Parametry
- fragment
- MethodCallCodeFragment
Wywołanie metody.
- instanceIdentifier
- String
Identyfikator, na którym zostanie wygenerowane wywołanie metody.
- typeQualified
- Boolean
true
jeśli wywołanie metody powinno być kwalifikowane pod kątem typu, false
dla składni wystąpienia/rozszerzenia.
Zwraca
Fragment.