IOperationContractGenerationExtension.cs 462 B

123456789101112131415
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel.Description
  5. {
  6. using System;
  7. using System.CodeDom;
  8. public interface IOperationContractGenerationExtension
  9. {
  10. void GenerateOperation(OperationContractGenerationContext context);
  11. }
  12. }