コード例 #1
0
ファイル: LayerType.cs プロジェクト: jpespartero/WorldWind
		public void ReplaceIdentifierAt(IdentifierType newValue, int index)
		{
			ReplaceDomElementAt("http://www.opengis.net/wms", "Identifier", index, newValue);
		}
コード例 #2
0
ファイル: LayerType.cs プロジェクト: jpespartero/WorldWind
		public void InsertIdentifierAt(IdentifierType newValue, int index)
		{
			InsertDomElementAt("http://www.opengis.net/wms", "Identifier", index, newValue);
		}
コード例 #3
0
ファイル: LayerType.cs プロジェクト: jpespartero/WorldWind
		public void AddIdentifier(IdentifierType newValue)
		{
			AppendDomElement("http://www.opengis.net/wms", "Identifier", newValue);
		}
コード例 #4
0
 public authorityEnumerator(IdentifierType par)
 {
     parent = par;
     nIndex = -1;
 }
コード例 #5
0
ファイル: IdentifierType.cs プロジェクト: paladin74/Dapple
 public authorityEnumerator(IdentifierType par)
 {
     parent = par;
     nIndex = -1;
 }
コード例 #6
0
ファイル: LayerType.cs プロジェクト: paladin74/Dapple
 public XmlNode AddIdentifier(IdentifierType newValue)
 {
     return AppendDomElement("http://www.opengis.net/wms", "Identifier", newValue);
 }