Codeunit 3040 DotNet_XsltArgumentList

App
Base Application
Namespace
System.Xml
Versions
17-28

Procedures, 2

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Modules/System/DotNetWrappers/DotNetXsltArgumentList.Codeunit.al30 lines, Copyright (c) Microsoft Corporation. MIT

namespace System.Xml;

using System;

codeunit 3040 DotNet_XsltArgumentList
{
    InherentEntitlements = X;
    InherentPermissions = X;

    trigger OnRun()
    begin
    end;

    var
        DotNetXsltArgumentList: DotNet XsltArgumentList;

    [Scope('OnPrem')]
    procedure GetXsltArgumentList(var DotNetXsltArgumentList2: DotNet XsltArgumentList)
    begin
        DotNetXsltArgumentList2 := DotNetXsltArgumentList;
    end;

    [Scope('OnPrem')]
    procedure SetXsltArgumentList(var DotNetXsltArgumentList2: DotNet XsltArgumentList)
    begin
        DotNetXsltArgumentList := DotNetXsltArgumentList2
    end;
}