ContentFormatterArgumentCollection Class

Represents the collection of initialization arguments for a ContentFormatter object.

Espacio de nombres: Microsoft.SqlServer.Management.Nmo
Ensamblado: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Sintaxis

'Declaración
<DefaultMemberAttribute("Item")> _
Public Class ContentFormatterArgumentCollection
    Inherits SimpleObjectCollectionBase
[DefaultMemberAttribute("Item")] 
public class ContentFormatterArgumentCollection : SimpleObjectCollectionBase
[DefaultMemberAttribute(L"Item")] 
public ref class ContentFormatterArgumentCollection : public SimpleObjectCollectionBase
/** @attribute DefaultMemberAttribute("Item") */ 
public class ContentFormatterArgumentCollection extends SimpleObjectCollectionBase
DefaultMemberAttribute("Item") 
public class ContentFormatterArgumentCollection extends SimpleObjectCollectionBase

Notas

Each content formatter can have initialization arguments. For information about the built-in XSLT content formatter's arguments, see Definir el formateador de contenido XSLT.

The distributor passes initialization arguments to the content formatter's Initialize method.

Inheritance Hierarchy

System.Object
   Microsoft.SqlServer.Management.Smo.AbstractCollectionBase
     Microsoft.SqlServer.Management.Smo.SmoCollectionBase
       Microsoft.SqlServer.Management.Smo.SortedListCollectionBase
         Microsoft.SqlServer.Management.Smo.SimpleObjectCollectionBase
          Microsoft.SqlServer.Management.Nmo.ContentFormatterArgumentCollection

Ejemplo

The following examples show how to define content formatter arguments and add them to a content formatter:

ContentFormatterArgument contentFormatterArgument1 = 
    new ContentFormatterArgument(
    contentFormatter, "XsltBaseDirectoryPath");
contentFormatterArgument1.Value = @"C:\NS\Full\XSLFiles";
ContentFormatterArgument contentFormatterArgument2 = 
    new ContentFormatterArgument(contentFormatter, "XsltFileName");
contentFormatterArgument2.Value = "NoOp.xslt";

// Add arguments to content formatter
contentFormatter.ContentFormatterArguments.Add(
    contentFormatterArgument1);
contentFormatter.ContentFormatterArguments.Add(
    contentFormatterArgument2);
Dim contentFormatterArgument1 As ContentFormatterArgument = _
    New ContentFormatterArgument(contentFormatter, _
    "XsltBaseDirectoryPath")
contentFormatterArgument1.Value = "C:\NS\Full\XSLFiles"
Dim contentFormatterArgument2 As ContentFormatterArgument = _
    New ContentFormatterArgument(contentFormatter, _
    "XsltFileName")
contentFormatterArgument2.Value = "NoOp.xslt"

' Add arguments to content formatter
contentFormatter.ContentFormatterArguments.Add( _
    contentFormatterArgument1)
contentFormatter.ContentFormatterArguments.Add( _
    contentFormatterArgument2)

Seguridad para subprocesos

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Plataformas

Plataformas de desarrollo

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Plataformas de destino

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Vea también

Referencia

ContentFormatterArgumentCollection Members
Microsoft.SqlServer.Management.Nmo Namespace

Otros recursos

Configurar formateadores de contenido
Arguments Element for ContentFormatter (ADF)