Files
adas-core/Documentation/docs/api/adas_core.Application.Services.Interfaces.IFileService.yml
T
2026-06-26 10:29:23 +02:00

846 lines
34 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: adas_core.Application.Services.Interfaces.IFileService
commentId: T:adas_core.Application.Services.Interfaces.IFileService
id: IFileService
parent: adas_core.Application.Services.Interfaces
children:
- adas_core.Application.Services.Interfaces.IFileService.CopyUpdateFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile})
- adas_core.Application.Services.Interfaces.IFileService.GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
- adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory(System.String)
- adas_core.Application.Services.Interfaces.IFileService.UploadAssetFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile},adas_core.Domain.Enums.FileEnum.AssetTheme)
langs:
- csharp
- vb
name: IFileService
nameWithType: IFileService
fullName: adas_core.Application.Services.Interfaces.IFileService
type: Interface
source:
remote:
path: adas-core.Application/Services/Interfaces/IFileService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: IFileService
path: ../../adas-core.Application/Services/Interfaces/IFileService.cs
startLine: 8
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
syntax:
content: public interface IFileService
content.vb: Public Interface IFileService
derivedClasses:
- adas_core.Application.Services.FileService
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.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})
id: CopyUpdateFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile})
parent: adas_core.Application.Services.Interfaces.IFileService
langs:
- csharp
- vb
name: CopyUpdateFiles(ICollection<IFormFile>)
nameWithType: IFileService.CopyUpdateFiles(ICollection<IFormFile>)
fullName: adas_core.Application.Services.Interfaces.IFileService.CopyUpdateFiles(System.Collections.Generic.ICollection<Microsoft.AspNetCore.Http.IFormFile>)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IFileService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: CopyUpdateFiles
path: ../../adas-core.Application/Services/Interfaces/IFileService.cs
startLine: 15
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Copies the provided update files to the appropriate location for processing or deployment.
example: []
syntax:
content: Task<bool> CopyUpdateFiles(ICollection<IFormFile> files)
parameters:
- id: files
type: System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile}
description: The collection of update files to be copied.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A task that represents the asynchronous operation. The task result contains a boolean value indicating whether the copy operation succeeded.
content.vb: Function CopyUpdateFiles(files As ICollection(Of IFormFile)) As Task(Of Boolean)
overload: adas_core.Application.Services.Interfaces.IFileService.CopyUpdateFiles*
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))
- 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)
id: UploadAssetFiles(System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile},adas_core.Domain.Enums.FileEnum.AssetTheme)
parent: adas_core.Application.Services.Interfaces.IFileService
langs:
- csharp
- vb
name: UploadAssetFiles(ICollection<IFormFile>, AssetTheme)
nameWithType: IFileService.UploadAssetFiles(ICollection<IFormFile>, FileEnum.AssetTheme)
fullName: adas_core.Application.Services.Interfaces.IFileService.UploadAssetFiles(System.Collections.Generic.ICollection<Microsoft.AspNetCore.Http.IFormFile>, adas_core.Domain.Enums.FileEnum.AssetTheme)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IFileService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: UploadAssetFiles
path: ../../adas-core.Application/Services/Interfaces/IFileService.cs
startLine: 22
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Uploads the provided asset files categorized by the specified theme, returning a value indicating whether the operation completed successfully.
example: []
syntax:
content: Task<bool> UploadAssetFiles(ICollection<IFormFile> files, FileEnum.AssetTheme themeParse)
parameters:
- id: files
type: System.Collections.Generic.ICollection{Microsoft.AspNetCore.Http.IFormFile}
description: The collection of uploaded form files to process and store as assets.
- id: themeParse
type: adas_core.Domain.Enums.FileEnum.AssetTheme
description: The asset theme used to classify and organize the uploaded files.
return:
type: System.Threading.Tasks.Task{System.Boolean}
description: A task that resolves to <code>true</code> if the asset files were uploaded successfully; otherwise, <code>false</code>.
content.vb: Function UploadAssetFiles(files As ICollection(Of IFormFile), themeParse As FileEnum.AssetTheme) As Task(Of Boolean)
overload: adas_core.Application.Services.Interfaces.IFileService.UploadAssetFiles*
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)
- 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)
id: GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
parent: adas_core.Application.Services.Interfaces.IFileService
langs:
- csharp
- vb
name: GetAllAssetFile(AssetTheme)
nameWithType: IFileService.GetAllAssetFile(FileEnum.AssetTheme)
fullName: adas_core.Application.Services.Interfaces.IFileService.GetAllAssetFile(adas_core.Domain.Enums.FileEnum.AssetTheme)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IFileService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetAllAssetFile
path: ../../adas-core.Application/Services/Interfaces/IFileService.cs
startLine: 28
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves all asset files for the specified asset theme as a list of asset data transfer objects.
example: []
syntax:
content: List<AssetDto> GetAllAssetFile(FileEnum.AssetTheme themeParse)
parameters:
- id: themeParse
type: adas_core.Domain.Enums.FileEnum.AssetTheme
description: The asset theme used to retrieve the corresponding assets.
return:
type: System.Collections.Generic.List{adas_core.Domain.Models.DTO.AssetDto}
description: A <xref href="System.Collections.Generic.List%601" data-throw-if-not-resolved="false"></xref> containing the asset data transfer objects for the specified theme.
content.vb: Function GetAllAssetFile(themeParse As FileEnum.AssetTheme) As List(Of AssetDto)
overload: adas_core.Application.Services.Interfaces.IFileService.GetAllAssetFile*
- uid: adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory(System.String)
commentId: M:adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory(System.String)
id: GetFilesInDirectory(System.String)
parent: adas_core.Application.Services.Interfaces.IFileService
langs:
- csharp
- vb
name: GetFilesInDirectory(string)
nameWithType: IFileService.GetFilesInDirectory(string)
fullName: adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory(string)
type: Method
source:
remote:
path: adas-core.Application/Services/Interfaces/IFileService.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetFilesInDirectory
path: ../../adas-core.Application/Services/Interfaces/IFileService.cs
startLine: 35
assemblies:
- adas-core.Application
namespace: adas_core.Application.Services.Interfaces
summary: Retrieves a list of file names from the specified directory path.
example: []
syntax:
content: List<string> GetFilesInDirectory(string directoryPath)
parameters:
- id: directoryPath
type: System.String
description: The path of the directory from which to retrieve the files.
return:
type: System.Collections.Generic.List{System.String}
description: A list of strings representing the names of the files in the specified directory.
content.vb: Function GetFilesInDirectory(directoryPath As String) As List(Of String)
overload: adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory*
nameWithType.vb: IFileService.GetFilesInDirectory(String)
fullName.vb: adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory(String)
name.vb: GetFilesInDirectory(String)
references:
- 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.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.Application.Services.Interfaces.IFileService.CopyUpdateFiles*
commentId: Overload:adas_core.Application.Services.Interfaces.IFileService.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: CopyUpdateFiles
nameWithType: IFileService.CopyUpdateFiles
fullName: adas_core.Application.Services.Interfaces.IFileService.CopyUpdateFiles
- 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<IFormFile>
nameWithType: ICollection<IFormFile>
fullName: System.Collections.Generic.ICollection<Microsoft.AspNetCore.Http.IFormFile>
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<bool>
nameWithType: Task<bool>
fullName: System.Threading.Tasks.Task<bool>
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<T>
nameWithType: ICollection<T>
fullName: System.Collections.Generic.ICollection<T>
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<TResult>
nameWithType: Task<TResult>
fullName: System.Threading.Tasks.Task<TResult>
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.Interfaces.IFileService.UploadAssetFiles*
commentId: Overload:adas_core.Application.Services.Interfaces.IFileService.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: UploadAssetFiles
nameWithType: IFileService.UploadAssetFiles
fullName: adas_core.Application.Services.Interfaces.IFileService.UploadAssetFiles
- 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: 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<T>
nameWithType: List<T>
fullName: System.Collections.Generic.List<T>
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.Interfaces.IFileService.GetAllAssetFile*
commentId: Overload:adas_core.Application.Services.Interfaces.IFileService.GetAllAssetFile
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_GetAllAssetFile_adas_core_Domain_Enums_FileEnum_AssetTheme_
name: GetAllAssetFile
nameWithType: IFileService.GetAllAssetFile
fullName: adas_core.Application.Services.Interfaces.IFileService.GetAllAssetFile
- 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<AssetDto>
nameWithType: List<AssetDto>
fullName: System.Collections.Generic.List<adas_core.Domain.Models.DTO.AssetDto>
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: adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory*
commentId: Overload:adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory
href: adas_core.Application.Services.Interfaces.IFileService.html#adas_core_Application_Services_Interfaces_IFileService_GetFilesInDirectory_System_String_
name: GetFilesInDirectory
nameWithType: IFileService.GetFilesInDirectory
fullName: adas_core.Application.Services.Interfaces.IFileService.GetFilesInDirectory
- 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<string>
nameWithType: List<string>
fullName: System.Collections.Generic.List<string>
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: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System