25 lines
729 B
C#
25 lines
729 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Management.Automation;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LANCommander.PowerShell.Cmdlets
|
|
{
|
|
[Cmdlet(VerbsData.ConvertFrom, "SerializedBase64")]
|
|
[OutputType(typeof(object))]
|
|
public class ConvertFromSerializedBase64Cmdlet : Cmdlet
|
|
{
|
|
[Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true)]
|
|
public string Input { get; set; }
|
|
|
|
protected override void ProcessRecord()
|
|
{
|
|
var xml = Encoding.UTF8.GetString(Convert.FromBase64String(Input));
|
|
|
|
WriteObject(PSSerializer.Deserialize(xml));
|
|
}
|
|
}
|
|
}
|