MonoTests.System.Security.Cryptography.Xml.UnprotectedXmlDsigC14NTransform.UnprotectedGetInnerXml C# (CSharp) Method

UnprotectedGetInnerXml() public method

public UnprotectedGetInnerXml ( ) : XmlNodeList
return System.Xml.XmlNodeList
		public XmlNodeList UnprotectedGetInnerXml () {
			return base.GetInnerXml ();
		}
	}

Usage Example

コード例 #1
0
        public void GetInnerXml()
        {
            XmlNodeList xnl = transform.UnprotectedGetInnerXml();

            Assert.IsNull(xnl, "Default InnerXml");
        }