コード例 #1
0
 public OnlineResourceEnumerator(AuthorityURLType par)
 {
     parent = par;
     nIndex = -1;
 }
コード例 #2
0
			public OnlineResourceEnumerator(AuthorityURLType par) 
			{
				parent = par;
				nIndex = -1;
			}
コード例 #3
0
 public nameEnumerator(AuthorityURLType par)
 {
     parent = par;
     nIndex = -1;
 }
コード例 #4
0
			public nameEnumerator(AuthorityURLType par) 
			{
				parent = par;
				nIndex = -1;
			}
コード例 #5
0
ファイル: LayerType.cs プロジェクト: jpespartero/WorldWind
		public void ReplaceAuthorityURLAt(AuthorityURLType newValue, int index)
		{
			ReplaceDomElementAt("http://www.opengis.net/wms", "AuthorityURL", index, newValue);
		}
コード例 #6
0
ファイル: LayerType.cs プロジェクト: jpespartero/WorldWind
		public void InsertAuthorityURLAt(AuthorityURLType newValue, int index)
		{
			InsertDomElementAt("http://www.opengis.net/wms", "AuthorityURL", index, newValue);
		}
コード例 #7
0
ファイル: LayerType.cs プロジェクト: jpespartero/WorldWind
		public void AddAuthorityURL(AuthorityURLType newValue)
		{
			AppendDomElement("http://www.opengis.net/wms", "AuthorityURL", newValue);
		}
コード例 #8
0
ファイル: LayerType.cs プロジェクト: paladin74/Dapple
 public XmlNode AddAuthorityURL(AuthorityURLType newValue)
 {
     return AppendDomElement("http://www.opengis.net/wms", "AuthorityURL", newValue);
 }