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