Class XdtTransformComponent
Implements a message pipeline component that transforms the message content using Microsoft XML Document Transform (XDT) Engine (http://msdn.microsoft.com/en-us/library/dd465326(VS.100).aspx).
Inheritance
Implements
Inherited Members
Namespace: Nevatech.Vsb.Repository.Processing
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class XdtTransformComponent : TransformationComponentBase, IValidator, IEquatable<MessagePipelineComponentBase>, IExtensibleDataObject, IDisposable
  Remarks
XDT online testing tool: https://webconfigtransformationtester.apphb.com/
Constructors
XdtTransformComponent()
Declaration
public XdtTransformComponent()
  Fields
ElementName
Name of the root element when object is serialized to XML.
Declaration
public const string ElementName = "TRANSFORM-XDT"
  Field Value
| Type | Description | 
|---|---|
| System.String | 
Properties
Configuration
Gets or sets the XDT description.
Declaration
public string Configuration { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Methods
Dispose()
Disposes underlying transformation.
Declaration
public void Dispose()
  Equals(MessagePipelineComponentBase)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(MessagePipelineComponentBase other)
  Parameters
| Type | Name | Description | 
|---|---|---|
| MessagePipelineComponentBase | other | The object to compare with the current object.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Boolean | True if the specified object is equal to the current object; otherwise, false.  | 
      
Overrides
Equals(Object)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object obj)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Object | obj | The object to compare with the current object.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Boolean | True if the specified object is equal to the current object; otherwise, false.  | 
      
Overrides
GetHashCode()
Returns hash code for the value of this instance.
Declaration
public override int GetHashCode()
  Returns
| Type | Description | 
|---|---|
| System.Int32 | Hash code for the value of this instance.  | 
      
Overrides
ProcessMessage(MessagePipelineContext)
Transforms the message content using Microsoft XML Document Transform (XDT) Engine.
Declaration
public override MessagePipelineResult ProcessMessage(MessagePipelineContext context)
  Parameters
| Type | Name | Description | 
|---|---|---|
| MessagePipelineContext | context | Provides the message processing context.  | 
      
Returns
| Type | Description | 
|---|---|
| MessagePipelineResult | Value indicating if message should continue on its way to the recipient or must be stopped and returned to the sender.  | 
      
Overrides
ToString()
Returns string representation of the object.
Declaration
public override string ToString()
  Returns
| Type | Description | 
|---|---|
| System.String | String representing the object's content.  | 
      
Overrides
Validate()
Evaluates the state of the object.
Declaration
public override bool Validate()
  Returns
| Type | Description | 
|---|---|
| System.Boolean | True if state is valid; otherwise, false.  |