Compartilhar via


IPolicyImportExtension.ImportPolicy Método

Definição

Define um método que pode importar declarações de política personalizadas e adicionar elementos de associação de implementação.

public:
 void ImportPolicy(System::ServiceModel::Description::MetadataImporter ^ importer, System::ServiceModel::Description::PolicyConversionContext ^ context);
public void ImportPolicy (System.ServiceModel.Description.MetadataImporter importer, System.ServiceModel.Description.PolicyConversionContext context);
abstract member ImportPolicy : System.ServiceModel.Description.MetadataImporter * System.ServiceModel.Description.PolicyConversionContext -> unit
Public Sub ImportPolicy (importer As MetadataImporter, context As PolicyConversionContext)

Parâmetros

importer
MetadataImporter

O objeto MetadataImporter em uso.

context
PolicyConversionContext

O PolicyConversionContext que contém as declarações de política que podem ser importadas e as coleções de elementos de associação às quais os elementos de associação da implementação podem ser adicionados.

Exemplos

O exemplo de código a seguir mostra o uso do PolicyAssertionCollection.Remove método para localizar, retornar e remover a declaração em uma etapa.

  #region IPolicyImporter Members
  public const string name1 = "acme";
  public const string ns1 = "http://Microsoft/WCF/Documentation/CustomPolicyAssertions";

  /*
   * Importing policy assertions usually means modifying the bindingelement stack in some way
   * to support the policy assertion. The procedure is:
   * 1. Find the custom assertion to import.
   * 2. Insert a supporting custom bindingelement or modify the current binding element collection
   *     to support the assertion.
   * 3. Remove the assertion from the collection. Once the ImportPolicy method has returned,
   *     any remaining assertions for the binding cause the binding to fail import and not be
   *     constructed.
   */
  public void ImportPolicy(MetadataImporter importer, PolicyConversionContext context)
  {
    Console.WriteLine("The custom policy importer has been called.");
    // Locate the custom assertion and remove it.
    XmlElement customAssertion = context.GetBindingAssertions().Remove(name1, ns1);
    if (customAssertion != null)
    {
      Console.WriteLine(
        "Removed our custom assertion from the imported "
        + "assertions collection and inserting our custom binding element."
      );
      // Here we would add the binding modification that implemented the policy.
      // This sample does not do this.
      Console.ForegroundColor = ConsoleColor.Red;
      Console.WriteLine(customAssertion.NamespaceURI + " : " + customAssertion.Name);
      Console.WriteLine(customAssertion.OuterXml);
      Console.ForegroundColor = ConsoleColor.Gray;
    }
 }
#endregion
    #Region "IPolicyImporter Members"
    Public Const name1 As String = "acme"
    Public Const ns1 As String = "http://Microsoft/WCF/Documentation/CustomPolicyAssertions"

'    
'     * Importing policy assertions usually means modifying the bindingelement stack in some way
'     * to support the policy assertion. The procedure is:
'     * 1. Find the custom assertion to import.
'     * 2. Insert a supporting custom bindingelement or modify the current binding element collection
'     *     to support the assertion.
'     * 3. Remove the assertion from the collection. Once the ImportPolicy method has returned, 
'     *     any remaining assertions for the binding cause the binding to fail import and not be 
'     *     constructed.
'     
    Public Sub ImportPolicy(ByVal importer As MetadataImporter, ByVal context As PolicyConversionContext) Implements IPolicyImportExtension.ImportPolicy
      Console.WriteLine("The custom policy importer has been called.")
      ' Locate the custom assertion and remove it.
      Dim customAssertion As XmlElement = context.GetBindingAssertions().Remove(name1, ns1)
      If customAssertion IsNot Nothing Then
        Console.WriteLine("Removed our custom assertion from the imported " & "assertions collection and inserting our custom binding element.")
        ' Here we would add the binding modification that implemented the policy.
        ' This sample does not do this.
        Console.ForegroundColor = ConsoleColor.Red
        Console.WriteLine(customAssertion.NamespaceURI & " : " & customAssertion.Name)
        Console.WriteLine(customAssertion.OuterXml)
        Console.ForegroundColor = ConsoleColor.Gray
      End If
    End Sub
  #End Region

O exemplo de código a seguir mostra o arquivo de configuração do aplicativo cliente para carregar o importador de política personalizado quando ele System.ServiceModel.Description.MetadataResolver é invocado.

<client>
    <endpoint 
      address="http://localhost:8080/StatefulService" 
      binding="wsHttpBinding"
      bindingConfiguration="CustomBinding_IStatefulService" 
      contract="IStatefulService"
      name="CustomBinding_IStatefulService" />
  <metadata>
    <policyImporters>
      <extension type="Microsoft.WCF.Documentation.CustomPolicyImporter, PolicyExtensions"/>
    </policyImporters>
  </metadata>
</client>

O exemplo de código a seguir mostra o uso do MetadataResolver para baixar e resolver metadados em objetos de descrição.

// Download all metadata.
ServiceEndpointCollection endpoints
  = MetadataResolver.Resolve(
    typeof(IStatefulService),
    new EndpointAddress("http://localhost:8080/StatefulService/mex")
  );
' Download all metadata. 
Dim endpoints As ServiceEndpointCollection = MetadataResolver.Resolve(GetType(IStatefulService), New EndpointAddress("http://localhost:8080/StatefulService/mex"))

Comentários

Implemente o ImportPolicy método para obter declarações de política e executar alguma modificação do contrato importado ou associação para dar suporte à declaração. Normalmente, um importador de política responde à localização de uma declaração de política personalizada configurando ou inserindo um elemento de associação na associação que está sendo importada.

Windows Communication Foundation (WCF) passa dois objetos para o ImportPolicy método, a e um MetadataImporter PolicyConversionContext. Normalmente, o PolicyConversionContext objeto já contém as declarações de política para cada escopo de associação.

Uma IPolicyImportExtension implementação executa as seguintes etapas:

  1. Localiza a declaração de política personalizada para a qual ela é responsável chamando os GetBindingAssertionsmétodos ou GetOperationBindingAssertions , GetMessageBindingAssertionsdependendo do escopo.

  2. Remove a declaração de política da coleção de declarações. O PolicyAssertionCollection.Remove método localiza, retorna e remove a declaração em uma etapa.

  3. Modifica a pilha de associação ou o contrato adicionando um personalizado BindingElement necessário à BindingElements propriedade ou modificando a PolicyConversionContext.Contract propriedade.

A etapa 2 é importante. Depois que todos os importadores de políticas forem chamados, o WCF verificará a existência de quaisquer declarações políticas que permaneçam. Se existir, o WCF pressupõe que a importação de política não foi bem-sucedida e não importa a associação associada.

Aplica-se a