takes the given Entry and inserts its into the server

Namespace:  Google.GData.Client
Assembly:  Google.GData.Client (in Google.GData.Client.dll)
Version: 1.4.0.2

Syntax

C#
public Y Insert<Y>(

	Feed<Y> feed,

	Y entry

) where Y : new(), Entry
Visual Basic (Declaration)
Public Function Insert(Of Y As {New, Entry}) ( _

	feed As Feed(Of Y), _

	entry As Y _

) As Y
Visual C++
public:

generic<typename Y>

where Y : gcnew(), Entry

Y Insert(

	Feed<Y>^ feed, 

	Y entry

)

Parameters

feed
Type: Google.GData.Client..::.Feed<(Of <(Y>)>)
entry
Type: Y

Type Parameters

Y

Return Value

the reflected entry from the server if any given

See Also