Udostępnij za pośrednictwem


Właściwość ReportingService2005.BatchHeaderValue

Wartość (BatchHeaderValue obiektu), reprezentuje identyfikator unikatowy, wygenerowane przez system partia dla operacji multi-metoda API Reporting Services SOAP.

Przestrzeń nazw:  ReportService2005
Zestaw:  ReportService2005 (w ReportService2005.dll)

Składnia

'Deklaracja
Public Property BatchHeaderValue As BatchHeader
    Get
    Set
'Użycie
Dim instance As ReportingService2005
Dim value As BatchHeader

value = instance.BatchHeaderValue

instance.BatchHeaderValue = value
public BatchHeader BatchHeaderValue { get; set; }
public:
property BatchHeader^ BatchHeaderValue {
    BatchHeader^ get ();
    void set (BatchHeader^ value);
}
member BatchHeaderValue : BatchHeader with get, set
function get BatchHeaderValue () : BatchHeader
function set BatchHeaderValue (value : BatchHeader)

Wartość właściwości

Typ: ReportService2005.BatchHeader

Uwagi

Można użyć BatchHeaderValue właściwość w nagłówku SOAP dla wywołania usługa sieci Web, które chcesz partia.

Wykonanie partia, zestaw BatchHeaderValue właściwość usługi serwera sieci Web raportu na wartość równą identyfikator partia, wygenerowany podczas tworzenia partia.Na przykład, poniższy kod C# ustawia BatchHeaderValue z usługa sieci Web serwera raportów na wartość równą identyfikator partia wcześniej utworzony, a następnie wykonuje partia:

rs.BatchHeaderValue = bh;
rs.ExecuteBatch();

Aby uzyskać więcej informacji o tworzeniu Identyfikatora partia, zobacz CreateBatch metoda.

Przykłady

Aby skompilować poniższy przykład kodu, musi odniesienie WSDL usług raportowania i przywozu niektórych obszarów nazw.Aby uzyskać więcej informacji, zobacz temat Compiling and Running Code Examples.Poniższy przykład kodu pobiera listę elementów w folderze Moje raporty użytkownika, a następnie usuwa elementy przy użyciu partia operacji:

Imports System
Imports System.Web.Services.Protocols

Class Sample
   Public Shared Sub Main()
      Dim rs As New ReportingService2005()
      rs.Credentials = System.Net.CredentialCache.DefaultCredentials

      ' Return all items in the My Reports folder.
      Dim items As CatalogItem() = rs.ListChildren("/My Reports", False)

      Dim bh As New BatchHeader()
      bh.BatchID = rs.CreateBatch()
      rs.BatchHeaderValue = bh

      Dim item As CatalogItem
      For Each item In  items
         Console.WriteLine((item.Path + " found."))
         rs.DeleteItem(item.Path)
         Console.WriteLine((item.Path + " deleted."))
      Next item

      Try
         rs.ExecuteBatch()
      Catch ex As SoapException
         Console.WriteLine(ex.Message)
      Finally
         rs.BatchHeaderValue = Nothing
      End Try
   End Sub 'Main
End Class 'Sample
using System;
using System.Web.Services.Protocols;

class Sample
{
   public static void Main()
   {
      ReportingService2005 rs = new ReportingService2005();
      rs.Credentials = System.Net.CredentialCache.DefaultCredentials;

      // Return all items in the My Reports folder.
      CatalogItem[] items = rs.ListChildren("/My Reports", false);

      BatchHeader bh = new BatchHeader();
      bh.BatchID = rs.CreateBatch();
      rs.BatchHeaderValue = bh;

      foreach (CatalogItem item in items)
      {
         Console.WriteLine(item.Path + " found.");
         rs.DeleteItem(item.Path);
         Console.WriteLine(item.Path + " deleted.");
      }

      try
      {
         rs.ExecuteBatch();
      }
      catch (SoapException ex)
      {
         Console.WriteLine(ex.Message);
      }
      finally
      {
         rs.BatchHeaderValue = null;
      }
   }
}