NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DataSet.DataSetName

Gets or sets the name of this DataSet.

[Visual Basic]
Public Property DataSetName As String
[C#]
public string DataSetName {get; set;}
[C++]
public: __property String* get_DataSetName();
public: __property void set_DataSetName(String*);
[JScript]
public function get DataSetName() : String;
public function set DataSetName(String);

Property Value

The name of the DataSet.

Example [Visual Basic]

The following example creates a new DataSet with the given DataSetName.

[Visual Basic]

Private Sub CreateDataSet() 
   ds As DataSet
   ds = New DataSet("SuppliersProducts")
   Console.WriteLine ds.DataSetName
End Sub

See Also

DataSet Class | DataSet Members | System.Data Namespace | DataSet