### YamlMime:ManagedReference
items:
- uid: adas_core.Application.Services.FileService
commentId: T:adas_core.Application.Services.FileService
id: FileService
parent: adas_core.Application.Services
children:
- adas_core.Application.Services.FileService.#ctor(Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.FileService})
- adas_core.Application.Services.FileService.CopyUpdateFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile})
- adas_core.Application.Services.FileService.GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
- adas_core.Application.Services.FileService.GetFilesInDirectory(System.String)
- adas_core.Application.Services.FileService.UploadAssetFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile},adas_core.Domain.Enums.FileEnum.AssetTheme)
langs:
- csharp
- vb
name: FileService
nameWithType: FileService
fullName: adas_core.Application.Services.FileService
type: Class
source:
remote:
path: adas-core.Application/Services/FileService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: FileService
path: ../../adas-core.Application/Services/FileService.cs
startLine: 16
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: Provides a concrete implementation of the contract for performing file-related operations.
example: []
syntax:
content: 'public class FileService : IFileService'
content.vb: Public Class FileService Implements IFileService
inheritance:
- System.Object
implements:
- adas_core.Application.Services.Interfaces.IFileService
inheritedMembers:
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
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.Application.Services.FileService.#ctor(Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.FileService})
commentId: M:adas_core.Application.Services.FileService.#ctor(Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.FileService})
id: '#ctor(Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings},Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.FileService})'
parent: adas_core.Application.Services.FileService
langs:
- csharp
- vb
name: FileService(IOptions, ILogger)
nameWithType: FileService.FileService(IOptions, ILogger)
fullName: adas_core.Application.Services.FileService.FileService(Microsoft.Extensions.Options.IOptions, Microsoft.Extensions.Logging.ILogger)
type: Constructor
source:
remote:
path: adas-core.Application/Services/FileService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: .ctor
path: ../../adas-core.Application/Services/FileService.cs
startLine: 23
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
syntax:
content: public FileService(IOptions apiSettings, ILogger logger)
parameters:
- id: apiSettings
type: Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings}
- id: logger
type: Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.FileService}
content.vb: Public Sub New(apiSettings As IOptions(Of ApiSettings), logger As ILogger(Of FileService))
overload: adas_core.Application.Services.FileService.#ctor*
nameWithType.vb: FileService.New(IOptions(Of ApiSettings), ILogger(Of FileService))
fullName.vb: adas_core.Application.Services.FileService.New(Microsoft.Extensions.Options.IOptions(Of adas_core.Domain.Models.AppSettings.ApiSettings), Microsoft.Extensions.Logging.ILogger(Of adas_core.Application.Services.FileService))
name.vb: New(IOptions(Of ApiSettings), ILogger(Of FileService))
- uid: adas_core.Application.Services.FileService.CopyUpdateFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile})
commentId: M:adas_core.Application.Services.FileService.CopyUpdateFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile})
id: CopyUpdateFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile})
parent: adas_core.Application.Services.FileService
langs:
- csharp
- vb
name: CopyUpdateFiles(ICollection)
nameWithType: FileService.CopyUpdateFiles(ICollection)
fullName: adas_core.Application.Services.FileService.CopyUpdateFiles(System.Collections.Generic.ICollection)
type: Method
source:
remote:
path: adas-core.Application/Services/FileService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: CopyUpdateFiles
path: ../../adas-core.Application/Services/FileService.cs
startLine: 43
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: >-
Copies the provided uploaded files into the configured update directory, creating each file on disk.
Returns false if the update directory is not configured (null, empty, or whitespace); otherwise returns true after all files have been copied.
example: []
syntax:
content: public Task CopyUpdateFiles(ICollection files)
parameters:
- id: files
type: System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile}
description: The collection of uploaded form files to be written to the update directory.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A task that resolves to true when every file is successfully copied, or false when the update directory is not configured.
content.vb: Public Function CopyUpdateFiles(files As ICollection(Of IFormFile)) As Task(Of Boolean)
overload: adas_core.Application.Services.FileService.CopyUpdateFiles*
implements:
- adas_core.Application.Services.Interfaces.IFileService.CopyUpdateFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile})
nameWithType.vb: FileService.CopyUpdateFiles(ICollection(Of IFormFile))
fullName.vb: adas_core.Application.Services.FileService.CopyUpdateFiles(System.Collections.Generic.ICollection(Of Microsoft.AspNetCore.Http.IFormFile))
name.vb: CopyUpdateFiles(ICollection(Of IFormFile))
- uid: adas_core.Application.Services.FileService.UploadAssetFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile},adas_core.Domain.Enums.FileEnum.AssetTheme)
commentId: M:adas_core.Application.Services.FileService.UploadAssetFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile},adas_core.Domain.Enums.FileEnum.AssetTheme)
id: UploadAssetFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile},adas_core.Domain.Enums.FileEnum.AssetTheme)
parent: adas_core.Application.Services.FileService
langs:
- csharp
- vb
name: UploadAssetFiles(ICollection, AssetTheme)
nameWithType: FileService.UploadAssetFiles(ICollection, FileEnum.AssetTheme)
fullName: adas_core.Application.Services.FileService.UploadAssetFiles(System.Collections.Generic.ICollection, adas_core.Domain.Enums.FileEnum.AssetTheme)
type: Method
source:
remote:
path: adas-core.Application/Services/FileService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: UploadAssetFiles
path: ../../adas-core.Application/Services/FileService.cs
startLine: 62
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: Asynchronously uploads a collection of asset files into a directory organized by the specified theme. If the assets directory is not configured, the method returns false; otherwise, it ensures the target directory exists, writes each file to disk, and returns true.
example: []
syntax:
content: public Task UploadAssetFiles(ICollection files, FileEnum.AssetTheme themeParse)
parameters:
- id: files
type: System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile}
description: The collection of uploaded form files to persist to the assets directory.
- id: themeParse
type: adas_core.Domain.Enums.FileEnum.AssetTheme
description: The asset theme used to determine the subdirectory in which the files will be stored.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A task that resolves to true when the files are successfully written, or false when the assets directory path is not configured.
content.vb: Public Function UploadAssetFiles(files As ICollection(Of IFormFile), themeParse As FileEnum.AssetTheme) As Task(Of Boolean)
overload: adas_core.Application.Services.FileService.UploadAssetFiles*
implements:
- adas_core.Application.Services.Interfaces.IFileService.UploadAssetFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile},adas_core.Domain.Enums.FileEnum.AssetTheme)
nameWithType.vb: FileService.UploadAssetFiles(ICollection(Of IFormFile), FileEnum.AssetTheme)
fullName.vb: adas_core.Application.Services.FileService.UploadAssetFiles(System.Collections.Generic.ICollection(Of Microsoft.AspNetCore.Http.IFormFile), adas_core.Domain.Enums.FileEnum.AssetTheme)
name.vb: UploadAssetFiles(ICollection(Of IFormFile), AssetTheme)
- uid: adas_core.Application.Services.FileService.GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
commentId: M:adas_core.Application.Services.FileService.GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
id: GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
parent: adas_core.Application.Services.FileService
langs:
- csharp
- vb
name: GetAllAssetFile(AssetTheme)
nameWithType: FileService.GetAllAssetFile(FileEnum.AssetTheme)
fullName: adas_core.Application.Services.FileService.GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
type: Method
source:
remote:
path: adas-core.Application/Services/FileService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetAllAssetFile
path: ../../adas-core.Application/Services/FileService.cs
startLine: 83
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: >-
Retrieves all asset files from the subdirectory that matches the specified theme, creating the subdirectory if it does not exist.
Returns an empty list when the assets directory is not configured or when an error occurs while reading the files.
example: []
syntax:
content: public List GetAllAssetFile(FileEnum.AssetTheme themeParse)
parameters:
- id: themeParse
type: adas_core.Domain.Enums.FileEnum.AssetTheme
description: The theme used to locate the corresponding subdirectory within the assets directory.
return:
type: System.Collections.Generic.List{adas_core.Domain.Models.DTO.AssetDto}
description: A list of objects containing the name, extension, and full path of each file found; an empty list if the assets directory is not configured or an error occurs.
content.vb: Public Function GetAllAssetFile(themeParse As FileEnum.AssetTheme) As List(Of AssetDto)
overload: adas_core.Application.Services.FileService.GetAllAssetFile*
implements:
- adas_core.Application.Services.Interfaces.IFileService.GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
- uid: adas_core.Application.Services.FileService.GetFilesInDirectory(System.String)
commentId: M:adas_core.Application.Services.FileService.GetFilesInDirectory(System.String)
id: GetFilesInDirectory(System.String)
parent: adas_core.Application.Services.FileService
langs:
- csharp
- vb
name: GetFilesInDirectory(string)
nameWithType: FileService.GetFilesInDirectory(string)
fullName: adas_core.Application.Services.FileService.GetFilesInDirectory(string)
type: Method
source:
remote:
path: adas-core.Application/Services/FileService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetFilesInDirectory
path: ../../adas-core.Application/Services/FileService.cs
startLine: 121
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services
summary: >-
Retrieves the list of file paths contained in the specified directory.
If the directory does not exist, a warning is logged and an empty list is returned;
if an error occurs during retrieval, it is logged and an empty list is returned.
example: []
syntax:
content: public List GetFilesInDirectory(string directoryPath)
parameters:
- id: directoryPath
type: System.String
description: The path of the directory to search for files.
return:
type: System.Collections.Generic.List{System.String}
description: A list of file paths found in the directory, or an empty list if the directory does not exist or an error occurs.
content.vb: Public Function GetFilesInDirectory(directoryPath As String) As List(Of String)
overload: adas_core.Application.Services.FileService.GetFilesInDirectory*
implements:
- adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory(System.String)
nameWithType.vb: FileService.GetFilesInDirectory(String)
fullName.vb: adas_core.Application.Services.FileService.GetFilesInDirectory(String)
name.vb: GetFilesInDirectory(String)
references:
- uid: adas_core.Application.Services.Interfaces.IFileService
commentId: T:adas_core.Application.Services.Interfaces.IFileService
parent: adas_core.Application.Services.Interfaces
href: adas_core.Application.Services.Interfaces.IFileService.html
name: IFileService
nameWithType: IFileService
fullName: adas_core.Application.Services.Interfaces.IFileService
- uid: adas_core.Application.Services
commentId: N:adas_core.Application.Services
href: adas_core.html
name: adas_core.Application.Services
nameWithType: adas_core.Application.Services
fullName: adas_core.Application.Services
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
- 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.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- 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.Application.Services.Interfaces
commentId: N:adas_core.Application.Services.Interfaces
href: adas_core.html
name: adas_core.Application.Services.Interfaces
nameWithType: adas_core.Application.Services.Interfaces
fullName: adas_core.Application.Services.Interfaces
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
- name: .
- uid: adas_core.Application.Services.Interfaces
name: Interfaces
href: adas_core.Application.Services.Interfaces.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Application
name: Application
href: adas_core.Application.html
- name: .
- uid: adas_core.Application.Services
name: Services
href: adas_core.Application.Services.html
- name: .
- uid: adas_core.Application.Services.Interfaces
name: Interfaces
href: adas_core.Application.Services.Interfaces.html
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- 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.Application.Services.FileService.#ctor*
commentId: Overload:adas_core.Application.Services.FileService.#ctor
href: adas_core.Application.Services.FileService.html#adas_core_Application_Services_FileService__ctor_Microsoft_Extensions_Options_IOptions_adas_core_Domain_Models_AppSettings_ApiSettings__Microsoft_Extensions_Logging_ILogger_adas_core_Application_Services_FileService__
name: FileService
nameWithType: FileService.FileService
fullName: adas_core.Application.Services.FileService.FileService
nameWithType.vb: FileService.New
fullName.vb: adas_core.Application.Services.FileService.New
name.vb: New
- uid: Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings}
commentId: T:Microsoft.Extensions.Options.IOptions{adas_core.Domain.Models.AppSettings.ApiSettings}
parent: Microsoft.Extensions.Options
definition: Microsoft.Extensions.Options.IOptions`1
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
name: IOptions
nameWithType: IOptions
fullName: Microsoft.Extensions.Options.IOptions
nameWithType.vb: IOptions(Of ApiSettings)
fullName.vb: Microsoft.Extensions.Options.IOptions(Of adas_core.Domain.Models.AppSettings.ApiSettings)
name.vb: IOptions(Of ApiSettings)
spec.csharp:
- uid: Microsoft.Extensions.Options.IOptions`1
name: IOptions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
- name: <
- uid: adas_core.Domain.Models.AppSettings.ApiSettings
name: ApiSettings
href: adas_core.Domain.Models.AppSettings.ApiSettings.html
- name: '>'
spec.vb:
- uid: Microsoft.Extensions.Options.IOptions`1
name: IOptions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.AppSettings.ApiSettings
name: ApiSettings
href: adas_core.Domain.Models.AppSettings.ApiSettings.html
- name: )
- uid: Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.FileService}
commentId: T:Microsoft.Extensions.Logging.ILogger{adas_core.Application.Services.FileService}
parent: Microsoft.Extensions.Logging
definition: Microsoft.Extensions.Logging.ILogger`1
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
name: ILogger
nameWithType: ILogger
fullName: Microsoft.Extensions.Logging.ILogger
nameWithType.vb: ILogger(Of FileService)
fullName.vb: Microsoft.Extensions.Logging.ILogger(Of adas_core.Application.Services.FileService)
name.vb: ILogger(Of FileService)
spec.csharp:
- uid: Microsoft.Extensions.Logging.ILogger`1
name: ILogger
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
- name: <
- uid: adas_core.Application.Services.FileService
name: FileService
href: adas_core.Application.Services.FileService.html
- name: '>'
spec.vb:
- uid: Microsoft.Extensions.Logging.ILogger`1
name: ILogger
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Application.Services.FileService
name: FileService
href: adas_core.Application.Services.FileService.html
- name: )
- uid: Microsoft.Extensions.Options.IOptions`1
commentId: T:Microsoft.Extensions.Options.IOptions`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
name: IOptions
nameWithType: IOptions
fullName: Microsoft.Extensions.Options.IOptions
nameWithType.vb: IOptions(Of TOptions)
fullName.vb: Microsoft.Extensions.Options.IOptions(Of TOptions)
name.vb: IOptions(Of TOptions)
spec.csharp:
- uid: Microsoft.Extensions.Options.IOptions`1
name: IOptions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
- name: <
- name: TOptions
- name: '>'
spec.vb:
- uid: Microsoft.Extensions.Options.IOptions`1
name: IOptions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options.ioptions-1
- name: (
- name: Of
- name: " "
- name: TOptions
- name: )
- uid: Microsoft.Extensions.Options
commentId: N:Microsoft.Extensions.Options
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
name: Microsoft.Extensions.Options
nameWithType: Microsoft.Extensions.Options
fullName: Microsoft.Extensions.Options
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
- name: .
- uid: Microsoft.Extensions
name: Extensions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
- name: .
- uid: Microsoft.Extensions.Options
name: Options
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
- name: .
- uid: Microsoft.Extensions
name: Extensions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
- name: .
- uid: Microsoft.Extensions.Options
name: Options
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.options
- uid: Microsoft.Extensions.Logging.ILogger`1
commentId: T:Microsoft.Extensions.Logging.ILogger`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
name: ILogger
nameWithType: ILogger
fullName: Microsoft.Extensions.Logging.ILogger
nameWithType.vb: ILogger(Of TCategoryName)
fullName.vb: Microsoft.Extensions.Logging.ILogger(Of TCategoryName)
name.vb: ILogger(Of TCategoryName)
spec.csharp:
- uid: Microsoft.Extensions.Logging.ILogger`1
name: ILogger
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
- name: <
- name: TCategoryName
- name: '>'
spec.vb:
- uid: Microsoft.Extensions.Logging.ILogger`1
name: ILogger
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1
- name: (
- name: Of
- name: " "
- name: TCategoryName
- name: )
- uid: Microsoft.Extensions.Logging
commentId: N:Microsoft.Extensions.Logging
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
name: Microsoft.Extensions.Logging
nameWithType: Microsoft.Extensions.Logging
fullName: Microsoft.Extensions.Logging
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
- name: .
- uid: Microsoft.Extensions
name: Extensions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
- name: .
- uid: Microsoft.Extensions.Logging
name: Logging
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft
- name: .
- uid: Microsoft.Extensions
name: Extensions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions
- name: .
- uid: Microsoft.Extensions.Logging
name: Logging
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging
- uid: adas_core.Application.Services.FileService.CopyUpdateFiles*
commentId: Overload:adas_core.Application.Services.FileService.CopyUpdateFiles
href: adas_core.Application.Services.FileService.html#adas_core_Application_Services_FileService_CopyUpdateFiles_System_Collections_Generic_ICollection_Microsoft_AspNetCore_Http_IFormFile__
name: CopyUpdateFiles
nameWithType: FileService.CopyUpdateFiles
fullName: adas_core.Application.Services.FileService.CopyUpdateFiles
- uid: adas_core.Application.Services.Interfaces.IFileService.CopyUpdateFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile})
commentId: M:adas_core.Application.Services.Interfaces.IFileService.CopyUpdateFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile})
parent: adas_core.Application.Services.Interfaces.IFileService
isExternal: true
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_CopyUpdateFiles_System_Collections_Generic_ICollection_Microsoft_AspNetCore_Http_IFormFile__
name: CopyUpdateFiles(ICollection)
nameWithType: IFileService.CopyUpdateFiles(ICollection)
fullName: adas_core.Application.Services.Interfaces.IFileService.CopyUpdateFiles(System.Collections.Generic.ICollection)
nameWithType.vb: IFileService.CopyUpdateFiles(ICollection(Of IFormFile))
fullName.vb: adas_core.Application.Services.Interfaces.IFileService.CopyUpdateFiles(System.Collections.Generic.ICollection(Of Microsoft.AspNetCore.Http.IFormFile))
name.vb: CopyUpdateFiles(ICollection(Of IFormFile))
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IFileService.CopyUpdateFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile})
name: CopyUpdateFiles
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_CopyUpdateFiles_System_Collections_Generic_ICollection_Microsoft_AspNetCore_Http_IFormFile__
- name: (
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: <
- uid: Microsoft.AspNetCore.Http.IFormFile
name: IFormFile
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.http.iformfile
- name: '>'
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IFileService.CopyUpdateFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile})
name: CopyUpdateFiles
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_CopyUpdateFiles_System_Collections_Generic_ICollection_Microsoft_AspNetCore_Http_IFormFile__
- name: (
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: (
- name: Of
- name: " "
- uid: Microsoft.AspNetCore.Http.IFormFile
name: IFormFile
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.http.iformfile
- name: )
- name: )
- uid: System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile}
commentId: T:System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile}
parent: System.Collections.Generic
definition: System.Collections.Generic.ICollection`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
name: ICollection
nameWithType: ICollection
fullName: System.Collections.Generic.ICollection
nameWithType.vb: ICollection(Of IFormFile)
fullName.vb: System.Collections.Generic.ICollection(Of Microsoft.AspNetCore.Http.IFormFile)
name.vb: ICollection(Of IFormFile)
spec.csharp:
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: <
- uid: Microsoft.AspNetCore.Http.IFormFile
name: IFormFile
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.http.iformfile
- name: '>'
spec.vb:
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: (
- name: Of
- name: " "
- uid: Microsoft.AspNetCore.Http.IFormFile
name: IFormFile
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.http.iformfile
- name: )
- uid: System.Threading.Tasks.Task{System.Boolean}
commentId: T:System.Threading.Tasks.Task{System.Boolean}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task
nameWithType: Task
fullName: System.Threading.Tasks.Task
nameWithType.vb: Task(Of Boolean)
fullName.vb: System.Threading.Tasks.Task(Of Boolean)
name.vb: Task(Of Boolean)
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: System.Collections.Generic.ICollection`1
commentId: T:System.Collections.Generic.ICollection`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
name: ICollection
nameWithType: ICollection
fullName: System.Collections.Generic.ICollection
nameWithType.vb: ICollection(Of T)
fullName.vb: System.Collections.Generic.ICollection(Of T)
name.vb: ICollection(Of T)
spec.csharp:
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
- uid: System.Threading.Tasks.Task`1
commentId: T:System.Threading.Tasks.Task`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task
nameWithType: Task
fullName: System.Threading.Tasks.Task
nameWithType.vb: Task(Of TResult)
fullName.vb: System.Threading.Tasks.Task(Of TResult)
name.vb: Task(Of TResult)
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- name: TResult
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- name: TResult
- name: )
- uid: System.Threading.Tasks
commentId: N:System.Threading.Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Threading.Tasks
nameWithType: System.Threading.Tasks
fullName: System.Threading.Tasks
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
- name: .
- uid: System.Threading.Tasks
name: Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
- name: .
- uid: System.Threading.Tasks
name: Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
- uid: adas_core.Application.Services.FileService.UploadAssetFiles*
commentId: Overload:adas_core.Application.Services.FileService.UploadAssetFiles
href: adas_core.Application.Services.FileService.html#adas_core_Application_Services_FileService_UploadAssetFiles_System_Collections_Generic_ICollection_Microsoft_AspNetCore_Http_IFormFile__adas_core_Domain_Enums_FileEnum_AssetTheme_
name: UploadAssetFiles
nameWithType: FileService.UploadAssetFiles
fullName: adas_core.Application.Services.FileService.UploadAssetFiles
- uid: adas_core.Application.Services.Interfaces.IFileService.UploadAssetFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile},adas_core.Domain.Enums.FileEnum.AssetTheme)
commentId: M:adas_core.Application.Services.Interfaces.IFileService.UploadAssetFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile},adas_core.Domain.Enums.FileEnum.AssetTheme)
parent: adas_core.Application.Services.Interfaces.IFileService
isExternal: true
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_UploadAssetFiles_System_Collections_Generic_ICollection_Microsoft_AspNetCore_Http_IFormFile__adas_core_Domain_Enums_FileEnum_AssetTheme_
name: UploadAssetFiles(ICollection, AssetTheme)
nameWithType: IFileService.UploadAssetFiles(ICollection, FileEnum.AssetTheme)
fullName: adas_core.Application.Services.Interfaces.IFileService.UploadAssetFiles(System.Collections.Generic.ICollection, adas_core.Domain.Enums.FileEnum.AssetTheme)
nameWithType.vb: IFileService.UploadAssetFiles(ICollection(Of IFormFile), FileEnum.AssetTheme)
fullName.vb: adas_core.Application.Services.Interfaces.IFileService.UploadAssetFiles(System.Collections.Generic.ICollection(Of Microsoft.AspNetCore.Http.IFormFile), adas_core.Domain.Enums.FileEnum.AssetTheme)
name.vb: UploadAssetFiles(ICollection(Of IFormFile), AssetTheme)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IFileService.UploadAssetFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile},adas_core.Domain.Enums.FileEnum.AssetTheme)
name: UploadAssetFiles
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_UploadAssetFiles_System_Collections_Generic_ICollection_Microsoft_AspNetCore_Http_IFormFile__adas_core_Domain_Enums_FileEnum_AssetTheme_
- name: (
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: <
- uid: Microsoft.AspNetCore.Http.IFormFile
name: IFormFile
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.http.iformfile
- name: '>'
- name: ','
- name: " "
- uid: adas_core.Domain.Enums.FileEnum.AssetTheme
name: AssetTheme
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IFileService.UploadAssetFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile},adas_core.Domain.Enums.FileEnum.AssetTheme)
name: UploadAssetFiles
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_UploadAssetFiles_System_Collections_Generic_ICollection_Microsoft_AspNetCore_Http_IFormFile__adas_core_Domain_Enums_FileEnum_AssetTheme_
- name: (
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: (
- name: Of
- name: " "
- uid: Microsoft.AspNetCore.Http.IFormFile
name: IFormFile
isExternal: true
href: https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.http.iformfile
- name: )
- name: ','
- name: " "
- uid: adas_core.Domain.Enums.FileEnum.AssetTheme
name: AssetTheme
- name: )
- uid: adas_core.Domain.Enums.FileEnum.AssetTheme
commentId: T:adas_core.Domain.Enums.FileEnum.AssetTheme
parent: adas_core.Domain.Enums
href: adas_core.Domain.Enums.FileEnum.html
name: FileEnum.AssetTheme
nameWithType: FileEnum.AssetTheme
fullName: adas_core.Domain.Enums.FileEnum.AssetTheme
spec.csharp:
- uid: adas_core.Domain.Enums.FileEnum
name: FileEnum
href: adas_core.Domain.Enums.FileEnum.html
- name: .
- uid: adas_core.Domain.Enums.FileEnum.AssetTheme
name: AssetTheme
href: adas_core.Domain.Enums.FileEnum.AssetTheme.html
spec.vb:
- uid: adas_core.Domain.Enums.FileEnum
name: FileEnum
href: adas_core.Domain.Enums.FileEnum.html
- name: .
- uid: adas_core.Domain.Enums.FileEnum.AssetTheme
name: AssetTheme
href: adas_core.Domain.Enums.FileEnum.AssetTheme.html
- uid: adas_core.Domain.Enums
commentId: N:adas_core.Domain.Enums
href: adas_core.html
name: adas_core.Domain.Enums
nameWithType: adas_core.Domain.Enums
fullName: adas_core.Domain.Enums
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.Enums
name: Enums
href: adas_core.Domain.Enums.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.Enums
name: Enums
href: adas_core.Domain.Enums.html
- uid: adas_core.Domain.Models.DTO.AssetDto
commentId: T:adas_core.Domain.Models.DTO.AssetDto
href: adas_core.Domain.Models.DTO.AssetDto.html
name: AssetDto
nameWithType: AssetDto
fullName: adas_core.Domain.Models.DTO.AssetDto
- uid: adas_core.Application.Services.FileService.GetAllAssetFile*
commentId: Overload:adas_core.Application.Services.FileService.GetAllAssetFile
href: adas_core.Application.Services.FileService.html#adas_core_Application_Services_FileService_GetAllAssetFile_adas_core_Domain_Enums_FileEnum_AssetTheme_
name: GetAllAssetFile
nameWithType: FileService.GetAllAssetFile
fullName: adas_core.Application.Services.FileService.GetAllAssetFile
- uid: adas_core.Application.Services.Interfaces.IFileService.GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
commentId: M:adas_core.Application.Services.Interfaces.IFileService.GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
parent: adas_core.Application.Services.Interfaces.IFileService
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_GetAllAssetFile_adas_core_Domain_Enums_FileEnum_AssetTheme_
name: GetAllAssetFile(AssetTheme)
nameWithType: IFileService.GetAllAssetFile(FileEnum.AssetTheme)
fullName: adas_core.Application.Services.Interfaces.IFileService.GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IFileService.GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
name: GetAllAssetFile
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_GetAllAssetFile_adas_core_Domain_Enums_FileEnum_AssetTheme_
- name: (
- uid: adas_core.Domain.Enums.FileEnum.AssetTheme
name: AssetTheme
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IFileService.GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
name: GetAllAssetFile
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_GetAllAssetFile_adas_core_Domain_Enums_FileEnum_AssetTheme_
- name: (
- uid: adas_core.Domain.Enums.FileEnum.AssetTheme
name: AssetTheme
- name: )
- uid: System.Collections.Generic.List{adas_core.Domain.Models.DTO.AssetDto}
commentId: T:System.Collections.Generic.List{adas_core.Domain.Models.DTO.AssetDto}
parent: System.Collections.Generic
definition: System.Collections.Generic.List`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name: List
nameWithType: List
fullName: System.Collections.Generic.List
nameWithType.vb: List(Of AssetDto)
fullName.vb: System.Collections.Generic.List(Of adas_core.Domain.Models.DTO.AssetDto)
name.vb: List(Of AssetDto)
spec.csharp:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: <
- uid: adas_core.Domain.Models.DTO.AssetDto
name: AssetDto
- name: '>'
spec.vb:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
- uid: adas_core.Domain.Models.DTO.AssetDto
name: AssetDto
- name: )
- uid: System.Collections.Generic.List`1
commentId: T:System.Collections.Generic.List`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name: List
nameWithType: List
fullName: System.Collections.Generic.List
nameWithType.vb: List(Of T)
fullName.vb: System.Collections.Generic.List(Of T)
name.vb: List(Of T)
spec.csharp:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: adas_core.Application.Services.FileService.GetFilesInDirectory*
commentId: Overload:adas_core.Application.Services.FileService.GetFilesInDirectory
href: adas_core.Application.Services.FileService.html#adas_core_Application_Services_FileService_GetFilesInDirectory_System_String_
name: GetFilesInDirectory
nameWithType: FileService.GetFilesInDirectory
fullName: adas_core.Application.Services.FileService.GetFilesInDirectory
- uid: adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory(System.String)
commentId: M:adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory(System.String)
parent: adas_core.Application.Services.Interfaces.IFileService
isExternal: true
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_GetFilesInDirectory_System_String_
name: GetFilesInDirectory(string)
nameWithType: IFileService.GetFilesInDirectory(string)
fullName: adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory(string)
nameWithType.vb: IFileService.GetFilesInDirectory(String)
fullName.vb: adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory(String)
name.vb: GetFilesInDirectory(String)
spec.csharp:
- uid: adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory(System.String)
name: GetFilesInDirectory
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_GetFilesInDirectory_System_String_
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
spec.vb:
- uid: adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory(System.String)
name: GetFilesInDirectory
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_GetFilesInDirectory_System_String_
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- 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.Collections.Generic.List{System.String}
commentId: T:System.Collections.Generic.List{System.String}
parent: System.Collections.Generic
definition: System.Collections.Generic.List`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name: List
nameWithType: List
fullName: System.Collections.Generic.List
nameWithType.vb: List(Of String)
fullName.vb: System.Collections.Generic.List(Of String)
name.vb: List(Of String)
spec.csharp:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: '>'
spec.vb:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )