IPayFileProcessorPluginParseFile Method |
Note: This API is now obsolete.
Parses the given file and returns all the payments.
Namespace:
Atomia.Billing.Core.Sdk.Plugins
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax [ObsoleteAttribute("This method is obsolete. Please, use method that return IList<PayFileRecord>.")]
IList<Payment> ParseFile(
Stream fileStream
)
<ObsoleteAttribute("This method is obsolete. Please, use method that return IList<PayFileRecord>.")>
Function ParseFile (
fileStream As Stream
) As IList(Of Payment)
[ObsoleteAttribute(L"This method is obsolete. Please, use method that return IList<PayFileRecord>.")]
IList<Payment^>^ ParseFile(
Stream^ fileStream
)
[<ObsoleteAttribute("This method is obsolete. Please, use method that return IList<PayFileRecord>.")>]
abstract ParseFile :
fileStream : Stream -> IList<Payment>
Parameters
- fileStream
- Type: System.IOStream
Pay file stream.
Return Value
Type:
IListPaymentList of parsed payments.
See Also