コード例 #1
0
ファイル: RequestType.cs プロジェクト: paladin74/Dapple
 public GetFeatureInfoEnumerator(RequestType par)
 {
     parent = par;
     nIndex = -1;
 }
コード例 #2
0
ファイル: RequestType.cs プロジェクト: paladin74/Dapple
 public GetMapEnumerator(RequestType par)
 {
     parent = par;
     nIndex = -1;
 }
コード例 #3
0
ファイル: CapabilityType.cs プロジェクト: paladin74/Dapple
 public void ReplaceRequestAt(RequestType newValue, int index)
 {
     ReplaceDomElementAt("http://www.opengis.net/wms", "Request", index, newValue);
 }
コード例 #4
0
ファイル: RequestType.cs プロジェクト: paladin74/Dapple
 public GetCapabilitiesEnumerator(RequestType par)
 {
     parent = par;
     nIndex = -1;
 }
コード例 #5
0
ファイル: CapabilityType.cs プロジェクト: paladin74/Dapple
 public XmlNode AddRequest(RequestType newValue)
 {
     return AppendDomElement("http://www.opengis.net/wms", "Request", newValue);
 }
コード例 #6
0
ファイル: CapabilityType.cs プロジェクト: paladin74/Dapple
 public void InsertRequestAt(RequestType newValue, int index)
 {
     InsertDomElementAt("http://www.opengis.net/wms", "Request", index, newValue);
 }
コード例 #7
0
 public GetFeatureInfoEnumerator(RequestType par)
 {
     parent = par;
     nIndex = -1;
 }
コード例 #8
0
		public void AddRequest(RequestType newValue)
		{
			AppendDomElement("http://www.opengis.net/wms", "Request", newValue);
		}
コード例 #9
0
 public GetMapEnumerator(RequestType par)
 {
     parent = par;
     nIndex = -1;
 }
コード例 #10
0
 public GetCapabilitiesEnumerator(RequestType par)
 {
     parent = par;
     nIndex = -1;
 }
コード例 #11
0
 public void ReplaceRequestAt(RequestType newValue, int index)
 {
     ReplaceDomElementAt("http://www.opengis.net/wms", "Request", index, newValue);
 }
コード例 #12
0
 public void InsertRequestAt(RequestType newValue, int index)
 {
     InsertDomElementAt("http://www.opengis.net/wms", "Request", index, newValue);
 }
コード例 #13
0
 public void AddRequest(RequestType newValue)
 {
     AppendDomElement("http://www.opengis.net/wms", "Request", newValue);
 }