Example #1
0
 internal Interface(PortType portType, TinyXdto.XdtoFactory factory)
 {
     Documentation = portType.Documentation;
     Name          = portType.Name;
     NamespaceURI  = portType.ServiceDescription.TargetNamespace;
     Operations    = OperationCollection.Create(portType.Operations, factory);
 }
Example #2
0
 internal Interface(string namespaceUri,
                    string documentation,
                    string name,
                    OperationCollection operations)
 {
     NamespaceURI  = namespaceUri;
     Documentation = documentation;
     Name          = name;
     Operations    = operations;
 }