certificates.cs

来自「PDF文件格式解析库源代码」· CS 代码 · 共 84 行

CS
84
字号
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 + =
减小字号Ctrl + -
显示快捷键?