Aracılığıyla paylaş


ReportingService2005.BatchHeaderValue Özelliği

Değer (BatchHeaderValue nesne) temsil eden bir benzersiz, sistem tarafından oluşturulan toplu iş kimliği Reporting Services soap API. multi-yöntem işlemleri için

Ad Alanı:  ReportService2005
Derleme:  ReportService2005 (ReportService2005 içinde.dll)

Sözdizimi

'Bildirim
Public Property BatchHeaderValue As BatchHeader
    Get
    Set
'Kullanım
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)

Özellik Değeri

Tür: ReportService2005.BatchHeader

Açıklamalar

Kullanabileceğiniz BatchHeaderValue özellik içindeki Web hizmet çağrıları istediğiniz soap üstbilgisitoplu iş iş.

Bir toplu işlemi yürütmek için küme BatchHeaderValue özellik Rapor Sunucusu Web hizmet toplu işlem oluşturulduğunda oluşturulan toplu iş kimliği eşit bir değer için.Örneğin, aşağıdaki C# kodu ayarlar BatchHeaderValue , Rapor Sunucusu Web hizmet önceden oluşturulan toplu iş kimliği'ne eşit olduğu ve ardından toplu iş yürüten bir değer için:

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

Bir toplu iş kimliği oluşturma hakkında daha fazla bilgi için bkz: CreateBatch yöntem.

Örnekler

Aşağıdaki kod örneği derlemek için Raporlama Hizmetleri wsdl başvuran ve belirli ad alanları almak gerekir.Daha fazla bilgi için, bkz. Compiling and Running Code Examples.Aşağıdaki kod örneği, bir kullanıcının öğeleri listesini alır Raporlarım klasörü ve toplu iş iş işlemi kullanarak öğeleri siler:

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;
      }
   }
}