📄 certificates.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
public class certificates : element_id
{
public certificates() : base("certificates") { }
public string url
{
set
{
this.SetAttribute("url", value);
}
}
protected issuers _issuers;
public issuers issuers
{
get
{
if (_issuers == null)
{
_issuers = new issuers();
this.AddChild(_issuers);
}
return _issuers;
}
set
{
this.RemoveChild(_issuers);
_issuers = value;
this.AddChild(_issuers);
}
}
protected oids _oids;
public oids oids
{
get
{
if (_oids == null)
{
_oids = new oids();
this.AddChild(_oids);
}
return _oids;
}
set
{
this.RemoveChild(_oids);
_oids = value;
this.AddChild(_oids);
}
}
protected signing _signing;
public signing signing
{
get
{
if (_signing == null)
{
_signing = new signing();
this.AddChild(_signing);
}
return _signing;
}
set
{
this.RemoveChild(_signing);
_signing = value;
this.AddChild(_signing);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -