Интерфейс IDocumentMap

Represents a document map.

Пространство имен:  Microsoft.ReportingServices.ReportProcessing
Сборка:  Microsoft.ReportingServices.ProcessingCore (в Microsoft.ReportingServices.ProcessingCore.dll)

Синтаксис

'Декларация
Public Interface IDocumentMap _
    Inherits IEnumerator(Of OnDemandDocumentMapNode), IDisposable, IEnumerator
'Применение
Dim instance As IDocumentMap
public interface IDocumentMap : IEnumerator<OnDemandDocumentMapNode>, 
    IDisposable, IEnumerator
public interface class IDocumentMap : IEnumerator<OnDemandDocumentMapNode^>, 
    IDisposable, IEnumerator
type IDocumentMap =  
    interface
        interface IEnumerator<OnDemandDocumentMapNode>
        interface IDisposable
        interface IEnumerator
    end
public interface IDocumentMap extends IEnumerator<OnDemandDocumentMapNode>, IDisposable, IEnumerator

Тип IDocumentMap обеспечивает доступ к следующим элементам.

Свойства

  Имя Описание
Открытое свойство Current (Производный от IEnumerator< (Of < ( <'OnDemandDocumentMapNode> ) > ) >.)
Открытое свойство Current (Производный от IEnumerator.)

В начало

Методы

  Имя Описание
Открытый метод Close Performs processing when the document map is closed by the end user.
Открытый метод Dispose (Производный от IDisposable.)
Открытый метод MoveNext (Производный от IEnumerator.)
Открытый метод Reset (Производный от IEnumerator.)

В начало

Примеры

public class MyDocumentMapImpl : IdocumentMap
{
   private bool m_isClosed = true;
   ...
   public void Close()
   {
      m_isClosed = true;
   }
}
Public Class MyDocumentMapImpl
   Inherits IdocumentMap
   Private m_isClosed As Boolean = True
   ...
   Public Sub Close()
      m_isClosed = True
   End Sub
End Class