569 lines
21 KiB
YAML
569 lines
21 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: adas_core.Domain.Utils.Interfaces.IMappingUtils
|
|
commentId: T:adas_core.Domain.Utils.Interfaces.IMappingUtils
|
|
id: IMappingUtils
|
|
parent: adas_core.Domain.Utils.Interfaces
|
|
children:
|
|
- adas_core.Domain.Utils.Interfaces.IMappingUtils.GetComplexityValue(System.String,System.Nullable{System.Double})
|
|
- adas_core.Domain.Utils.Interfaces.IMappingUtils.SearchByCode(System.Object,System.String)
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: IMappingUtils
|
|
nameWithType: IMappingUtils
|
|
fullName: adas_core.Domain.Utils.Interfaces.IMappingUtils
|
|
type: Interface
|
|
source:
|
|
remote:
|
|
path: adas-core.Domain/Utils/Interfaces/IMappingUtils.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: IMappingUtils
|
|
path: ../../adas-core.Domain/Utils/Interfaces/IMappingUtils.cs
|
|
startLine: 2
|
|
assemblies:
|
|
- adas-core.Domain
|
|
namespace: adas_core.Domain.Utils.Interfaces
|
|
syntax:
|
|
content: public interface IMappingUtils
|
|
content.vb: Public Interface IMappingUtils
|
|
derivedClasses:
|
|
- adas_core.Domain.Utils.MappingUtils
|
|
extensionMethods:
|
|
- System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
|
|
- System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
|
|
- System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
|
|
- uid: adas_core.Domain.Utils.Interfaces.IMappingUtils.SearchByCode(System.Object,System.String)
|
|
commentId: M:adas_core.Domain.Utils.Interfaces.IMappingUtils.SearchByCode(System.Object,System.String)
|
|
id: SearchByCode(System.Object,System.String)
|
|
parent: adas_core.Domain.Utils.Interfaces.IMappingUtils
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: SearchByCode(object, string)
|
|
nameWithType: IMappingUtils.SearchByCode(object, string)
|
|
fullName: adas_core.Domain.Utils.Interfaces.IMappingUtils.SearchByCode(object, string)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Domain/Utils/Interfaces/IMappingUtils.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: SearchByCode
|
|
path: ../../adas-core.Domain/Utils/Interfaces/IMappingUtils.cs
|
|
startLine: 10
|
|
assemblies:
|
|
- adas-core.Domain
|
|
namespace: adas_core.Domain.Utils.Interfaces
|
|
summary: Searches for an entity by its code within the specified category and returns its type, name, and group.
|
|
example: []
|
|
syntax:
|
|
content: (string type, string name, string group)? SearchByCode(object code, string category)
|
|
parameters:
|
|
- id: code
|
|
type: System.Object
|
|
description: The code used to look up the entity.
|
|
- id: category
|
|
type: System.String
|
|
description: The category used to filter the search.
|
|
return:
|
|
type: System.Nullable{System.ValueTuple{System.String,System.String,System.String}}
|
|
description: A nullable tuple containing the type, name, and group of the found entity, or <code>null</code> if no match is found.
|
|
content.vb: Function SearchByCode(code As Object, category As String) As (type As String, name As String, group As String)?
|
|
overload: adas_core.Domain.Utils.Interfaces.IMappingUtils.SearchByCode*
|
|
nameWithType.vb: IMappingUtils.SearchByCode(Object, String)
|
|
fullName.vb: adas_core.Domain.Utils.Interfaces.IMappingUtils.SearchByCode(Object, String)
|
|
name.vb: SearchByCode(Object, String)
|
|
- uid: adas_core.Domain.Utils.Interfaces.IMappingUtils.GetComplexityValue(System.String,System.Nullable{System.Double})
|
|
commentId: M:adas_core.Domain.Utils.Interfaces.IMappingUtils.GetComplexityValue(System.String,System.Nullable{System.Double})
|
|
id: GetComplexityValue(System.String,System.Nullable{System.Double})
|
|
parent: adas_core.Domain.Utils.Interfaces.IMappingUtils
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetComplexityValue(string, double?)
|
|
nameWithType: IMappingUtils.GetComplexityValue(string, double?)
|
|
fullName: adas_core.Domain.Utils.Interfaces.IMappingUtils.GetComplexityValue(string, double?)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Domain/Utils/Interfaces/IMappingUtils.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: GetComplexityValue
|
|
path: ../../adas-core.Domain/Utils/Interfaces/IMappingUtils.cs
|
|
startLine: 17
|
|
assemblies:
|
|
- adas-core.Domain
|
|
namespace: adas_core.Domain.Utils.Interfaces
|
|
summary: Retrieves the complexity value associated with the specified name, optionally applying a weight.
|
|
example: []
|
|
syntax:
|
|
content: int GetComplexityValue(string name, double? peso = null)
|
|
parameters:
|
|
- id: name
|
|
type: System.String
|
|
description: The name used to look up the complexity value.
|
|
- id: peso
|
|
type: System.Nullable{System.Double}
|
|
description: An optional weight value to apply to the complexity calculation.
|
|
return:
|
|
type: System.Int32
|
|
description: The complexity value as an integer.
|
|
content.vb: Function GetComplexityValue(name As String, peso As Double? = Nothing) As Integer
|
|
overload: adas_core.Domain.Utils.Interfaces.IMappingUtils.GetComplexityValue*
|
|
nameWithType.vb: IMappingUtils.GetComplexityValue(String, Double?)
|
|
fullName.vb: adas_core.Domain.Utils.Interfaces.IMappingUtils.GetComplexityValue(String, Double?)
|
|
name.vb: GetComplexityValue(String, Double?)
|
|
references:
|
|
- uid: adas_core.Domain.Utils.Interfaces
|
|
commentId: N:adas_core.Domain.Utils.Interfaces
|
|
href: adas_core.html
|
|
name: adas_core.Domain.Utils.Interfaces
|
|
nameWithType: adas_core.Domain.Utils.Interfaces
|
|
fullName: adas_core.Domain.Utils.Interfaces
|
|
spec.csharp:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Utils
|
|
name: Utils
|
|
href: adas_core.Domain.Utils.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Utils.Interfaces
|
|
name: Interfaces
|
|
href: adas_core.Domain.Utils.Interfaces.html
|
|
spec.vb:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Utils
|
|
name: Utils
|
|
href: adas_core.Domain.Utils.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Utils.Interfaces
|
|
name: Interfaces
|
|
href: adas_core.Domain.Utils.Interfaces.html
|
|
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
parent: adas_core.Domain.Utils.NumberUtils
|
|
definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
name: IsNumber(object)
|
|
nameWithType: NumberUtils.IsNumber(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
|
|
nameWithType.vb: NumberUtils.IsNumber(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
|
|
name.vb: IsNumber(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
parent: adas_core.Domain.Utils.NumberUtils
|
|
definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
name: ToDouble(object)
|
|
nameWithType: NumberUtils.ToDouble(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
|
|
nameWithType.vb: NumberUtils.ToDouble(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
|
|
name.vb: ToDouble(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
|
|
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
parent: adas_core.Domain.Utils.ObjectUtils
|
|
definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
name: ToStr(object)
|
|
nameWithType: ObjectUtils.ToStr(object)
|
|
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
|
|
nameWithType.vb: ObjectUtils.ToStr(Object)
|
|
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
|
|
name.vb: ToStr(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
isExternal: true
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
name: IsNumber(object)
|
|
nameWithType: NumberUtils.IsNumber(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
|
|
nameWithType.vb: NumberUtils.IsNumber(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
|
|
name.vb: IsNumber(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.NumberUtils
|
|
commentId: T:adas_core.Domain.Utils.NumberUtils
|
|
parent: adas_core.Domain.Utils
|
|
href: adas_core.Domain.Utils.NumberUtils.html
|
|
name: NumberUtils
|
|
nameWithType: NumberUtils
|
|
fullName: adas_core.Domain.Utils.NumberUtils
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
isExternal: true
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
name: ToDouble(object)
|
|
nameWithType: NumberUtils.ToDouble(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
|
|
nameWithType.vb: NumberUtils.ToDouble(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
|
|
name.vb: ToDouble(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
isExternal: true
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
name: ToStr(object)
|
|
nameWithType: ObjectUtils.ToStr(object)
|
|
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
|
|
nameWithType.vb: ObjectUtils.ToStr(Object)
|
|
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
|
|
name.vb: ToStr(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.ObjectUtils
|
|
commentId: T:adas_core.Domain.Utils.ObjectUtils
|
|
parent: adas_core.Domain.Utils
|
|
href: adas_core.Domain.Utils.ObjectUtils.html
|
|
name: ObjectUtils
|
|
nameWithType: ObjectUtils
|
|
fullName: adas_core.Domain.Utils.ObjectUtils
|
|
- uid: adas_core.Domain.Utils
|
|
commentId: N:adas_core.Domain.Utils
|
|
href: adas_core.html
|
|
name: adas_core.Domain.Utils
|
|
nameWithType: adas_core.Domain.Utils
|
|
fullName: adas_core.Domain.Utils
|
|
spec.csharp:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Utils
|
|
name: Utils
|
|
href: adas_core.Domain.Utils.html
|
|
spec.vb:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Utils
|
|
name: Utils
|
|
href: adas_core.Domain.Utils.html
|
|
- uid: adas_core.Domain.Utils.Interfaces.IMappingUtils.SearchByCode*
|
|
commentId: Overload:adas_core.Domain.Utils.Interfaces.IMappingUtils.SearchByCode
|
|
href: adas_core.Domain.Utils.Interfaces.IMappingUtils.html#adas_core_Domain_Utils_Interfaces_IMappingUtils_SearchByCode_System_Object_System_String_
|
|
name: SearchByCode
|
|
nameWithType: IMappingUtils.SearchByCode
|
|
fullName: adas_core.Domain.Utils.Interfaces.IMappingUtils.SearchByCode
|
|
- uid: System.Object
|
|
commentId: T:System.Object
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
name: object
|
|
nameWithType: object
|
|
fullName: object
|
|
nameWithType.vb: Object
|
|
fullName.vb: Object
|
|
name.vb: Object
|
|
- uid: System.String
|
|
commentId: T:System.String
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
name: string
|
|
nameWithType: string
|
|
fullName: string
|
|
nameWithType.vb: String
|
|
fullName.vb: String
|
|
name.vb: String
|
|
- uid: System.Nullable{System.ValueTuple{System.String,System.String,System.String}}
|
|
commentId: T:System.Nullable{System.ValueTuple{System.String,System.String,System.String}}
|
|
parent: System
|
|
definition: System.Nullable`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
name: (string type, string name, string group)?
|
|
nameWithType: (string type, string name, string group)?
|
|
fullName: (string type, string name, string group)?
|
|
nameWithType.vb: (type As String, name As String, group As String)?
|
|
fullName.vb: (type As String, name As String, group As String)?
|
|
name.vb: (type As String, name As String, group As String)?
|
|
spec.csharp:
|
|
- name: (
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: " "
|
|
- uid: System.ValueTuple{System.String,System.String,System.String}.type
|
|
name: type
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.string,system.string,system.string-.type
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: " "
|
|
- uid: System.ValueTuple{System.String,System.String,System.String}.name
|
|
name: name
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.string,system.string,system.string-.name
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: " "
|
|
- uid: System.ValueTuple{System.String,System.String,System.String}.group
|
|
name: group
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.string,system.string,system.string-.group
|
|
- name: )
|
|
- name: '?'
|
|
spec.vb:
|
|
- name: (
|
|
- uid: System.ValueTuple{System.String,System.String,System.String}.type
|
|
name: type
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.string,system.string,system.string-.type
|
|
- name: " "
|
|
- name: As
|
|
- name: " "
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.ValueTuple{System.String,System.String,System.String}.name
|
|
name: name
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.string,system.string,system.string-.name
|
|
- name: " "
|
|
- name: As
|
|
- name: " "
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.ValueTuple{System.String,System.String,System.String}.group
|
|
name: group
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.string,system.string,system.string-.group
|
|
- name: " "
|
|
- name: As
|
|
- name: " "
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: )
|
|
- name: '?'
|
|
- uid: System
|
|
commentId: N:System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System
|
|
nameWithType: System
|
|
fullName: System
|
|
- uid: System.Nullable`1
|
|
commentId: T:System.Nullable`1
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
|
name: Nullable<T>
|
|
nameWithType: Nullable<T>
|
|
fullName: System.Nullable<T>
|
|
nameWithType.vb: Nullable(Of T)
|
|
fullName.vb: System.Nullable(Of T)
|
|
name.vb: Nullable(Of T)
|
|
spec.csharp:
|
|
- uid: System.Nullable`1
|
|
name: Nullable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Nullable`1
|
|
name: Nullable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.Interfaces.IMappingUtils.GetComplexityValue*
|
|
commentId: Overload:adas_core.Domain.Utils.Interfaces.IMappingUtils.GetComplexityValue
|
|
href: adas_core.Domain.Utils.Interfaces.IMappingUtils.html#adas_core_Domain_Utils_Interfaces_IMappingUtils_GetComplexityValue_System_String_System_Nullable_System_Double__
|
|
name: GetComplexityValue
|
|
nameWithType: IMappingUtils.GetComplexityValue
|
|
fullName: adas_core.Domain.Utils.Interfaces.IMappingUtils.GetComplexityValue
|
|
- uid: System.Nullable{System.Double}
|
|
commentId: T:System.Nullable{System.Double}
|
|
parent: System
|
|
definition: System.Nullable`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.double
|
|
name: double?
|
|
nameWithType: double?
|
|
fullName: double?
|
|
nameWithType.vb: Double?
|
|
fullName.vb: Double?
|
|
name.vb: Double?
|
|
spec.csharp:
|
|
- uid: System.Double
|
|
name: double
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.double
|
|
- name: '?'
|
|
spec.vb:
|
|
- uid: System.Double
|
|
name: Double
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.double
|
|
- name: '?'
|
|
- uid: System.Int32
|
|
commentId: T:System.Int32
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.int32
|
|
name: int
|
|
nameWithType: int
|
|
fullName: int
|
|
nameWithType.vb: Integer
|
|
fullName.vb: Integer
|
|
name.vb: Integer
|