DBReader/SAPKernel/RFC_DB_FLDTable

njms發表於2007-09-11


//------------------------------------------------------------------------------
//
// This code was generated by a SAP. NET Connector Proxy Generator Version 1.0
// Created at 06.10.2003
// Created from Windows 2000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
using System;
using System.Text;
using System.Collections;
using System.Runtime.InteropServices;
using System.Xml.Serialization;
using System.Web.Services;
using System.Web.Services.Description;
using System.Web.Services.Protocols;
using SAP.Connector;

namespace SAPReader.SAPKernel
{

public class RFC_DB_FLDTable : SAPTable
{
public static Type GetElementType()
{
return (typeof(RFC_DB_FLD));
}

public override object CreateNewRow()
{
return new RFC_DB_FLD();
}

public RFC_DB_FLD this[int index]
{
get
{
return ((RFC_DB_FLD)(List[index]));
}
set
{
List[index] = value;
}
}

public int Add(RFC_DB_FLD value)
{
return List.Add(value);
}

public void Insert(int index, RFC_DB_FLD value)
{
List.Insert(index, value);
}

public int IndexOf(RFC_DB_FLD value)
{
return List.IndexOf(value);
}

public bool Contains(RFC_DB_FLD value)
{
return List.Contains(value);
}

public void Remove(RFC_DB_FLD value)
{
List.Remove(value);
}

public void CopyTo(RFC_DB_FLD[] array, int index)
{
List.CopyTo(array, index);
}
}
}

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/232040/viewspace-969006/,如需轉載,請註明出處,否則將追究法律責任。