3 instantiations of PortType
System.ServiceModel (1)
System\ServiceModel\Description\WsdlExporter.cs (1)
259
WsdlNS.PortType wsdlPortType = new WsdlNS.
PortType
();
System.Web.Services (2)
System\Web\Services\Description\ProtocolReflector.cs (1)
382
portType = new
PortType
();
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
6264
o = new global::System.Web.Services.Description.
PortType
();
75 references to PortType
System.ServiceModel (29)
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (1)
488
WsdlNS.
PortType
wsdlPortType = wsdl.PortTypes[portTypeQName.Name];
System\ServiceModel\ComIntegration\WsdlServiceChannelBuilder.cs (1)
282
WsdlNS.
PortType
wsdlPortType = wsdlDocs.GetPortType(contractQname);
System\ServiceModel\Description\MessageContractImporter.cs (1)
1089
foreach (WsdlNS.
PortType
portType in description.PortTypes)
System\ServiceModel\Description\WsdlContractConversionContext.cs (3)
25
readonly WsdlNS.
PortType
wsdlPortType;
35
internal WsdlContractConversionContext(ContractDescription contract, WsdlNS.
PortType
wsdlPortType)
92
public WsdlNS.
PortType
WsdlPortType { get { return wsdlPortType; } }
System\ServiceModel\Description\WsdlExporter.cs (5)
45
WsdlNS.
PortType
wsdlPortType = CreateWsdlPortType(contract);
254
WsdlNS.
PortType
CreateWsdlPortType(ContractDescription contract)
259
WsdlNS.
PortType
wsdlPortType = new WsdlNS.PortType();
324
WsdlNS.
PortType
wsdlPortType = exportedContracts[endpoint.Contract].WsdlPortType;
1104
internal static void AddUsingSessionAttributeIfNeeded(WsdlNS.
PortType
wsdlPortType, ContractDescription contract)
System\ServiceModel\Description\WsdlHelper.cs (1)
246
foreach (WsdlNS.
PortType
portType in wsdl.PortTypes)
System\ServiceModel\Description\WsdlImporter.cs (15)
111
foreach (WsdlNS.
PortType
wsdlPortType in wsdl.PortTypes)
163
public ContractDescription ImportContract(WsdlNS.
PortType
wsdlPortType)
196
public ServiceEndpointCollection ImportEndpoints(WsdlNS.
PortType
wsdlPortType)
297
ContractDescription ImportWsdlPortType(WsdlNS.
PortType
wsdlPortType, WsdlPortTypeImportOptions importOptions, ErrorBehavior errorBehavior)
532
ContractDescription CreateContractDescription(WsdlNS.
PortType
wsdlPortType, XmlQualifiedName wsdlPortTypeQName)
541
OperationDescription CreateOperationDescription(WsdlNS.
PortType
wsdlPortType, WsdlNS.Operation wsdlOperation, ContractDescription contract)
579
WsdlNS.
PortType
wsdlPortType = wsdlDocuments.GetPortType(wsdlPortTypeQName);
717
void VerifyImportedWsdlPortType(WsdlNS.
PortType
wsdlPortType)
874
WsdlNS.
PortType
wsdlPortType = wsdlDocuments.GetPortType(wsdlOperationBinding.Binding.Type);
1279
internal static void SetSession(ContractDescription contractDescription, WsdlNS.
PortType
wsdlPortType)
1513
IEnumerable<WsdlNS.Binding> FindBindingsForPortType(WsdlNS.
PortType
wsdlPortType)
1749
if (item is WsdlNS.
PortType
)
1798
if (item is WsdlNS.
PortType
)
1801
wsdlNs = ((WsdlNS.
PortType
)item).ServiceDescription.TargetNamespace ?? String.Empty;
1833
WsdlNS.
PortType
wsdlPortType = ((WsdlNS.Operation)item).PortType;
System\ServiceModel\Security\WSTrustServiceContract.cs (2)
1698
foreach (
PortType
portType in serviceDescription.PortTypes)
2093
PortType
portType,
System.Web.Extensions (8)
Compilation\WCFModel\WsdlInspector.cs (8)
33
private Dictionary<XmlQualifiedName,
PortType
> portTypes;
43
this.portTypes = new Dictionary<XmlQualifiedName,
PortType
>();
74
foreach (
PortType
portType in wsdl.PortTypes)
77
PortType
definedPortType;
109
private void MatchPortTypes(
PortType
x,
PortType
y)
301
private void ReportUniqueOperation(Operation operation,
PortType
portType1,
PortType
portType2)
System.Web.Services (38)
System\Web\Services\Configuration\WebServicesSection.cs (1)
190
table.Add(typeof(
PortType
), new XmlAttributes());
System\Web\Services\Description\ProtocolImporter.cs (8)
40
PortType
portType;
170
public
PortType
PortType {
267
PortType
portType = ServiceDescriptions.GetPortType(binding.Type);
284
PortType
portType = ServiceDescriptions.GetPortType(binding.Type);
309
PortType
portType = ServiceDescriptions.GetPortType(binding.Type);
320
PortType
portType = ServiceDescriptions.GetPortType(binding.Type);
333
void MoveToBinding(Binding binding,
PortType
portType) {
337
void MoveToBinding(Service service, Port port, Binding binding,
PortType
portType) {
System\Web\Services\Description\ProtocolReflector.cs (2)
32
PortType
portType;
142
public
PortType
PortType {
System\Web\Services\Description\ServiceDescription.cs (18)
1064
PortType
parent;
1067
internal void SetParent(
PortType
parent) {
1084
public
PortType
PortType {
2084
public
PortType
this[int index] {
2085
get { return (
PortType
)List[index]; }
2093
public int Add(
PortType
portType) {
2101
public void Insert(int index,
PortType
portType) {
2109
public int IndexOf(
PortType
portType) {
2117
public bool Contains(
PortType
portType) {
2125
public void Remove(
PortType
portType) {
2133
public void CopyTo(
PortType
[] array, int index) {
2141
public
PortType
this[string name] {
2142
get { return (
PortType
)Table[name]; }
2150
return ((
PortType
)value).Name;
2158
((
PortType
)value).SetParent((ServiceDescription)parent);
2596
internal OperationCollection(
PortType
portType) : base(portType) { }
2660
((Operation)value).SetParent((
PortType
)parent);
2863
else if (type == typeof(
PortType
))
System\Web\Services\Description\ServiceDescriptionImporter.cs (1)
327
foreach (
PortType
portType in description.PortTypes) {
System\Web\Services\Description\ServiceDescriptions.cs (2)
127
public
PortType
GetPortType(XmlQualifiedName name) {
129
PortType
portType = null;
System\Web\Services\Description\ServiceDescriptionSerializer.cs (5)
81
Write75_PortType(@"portType", @"http://schemas.xmlsoap.org/wsdl/", ((global::System.Web.Services.Description.
PortType
)a[ia]), false, false);
1361
void Write75_PortType(string n, string ns, global::System.Web.Services.Description.
PortType
o, bool isNullable, bool needType) {
1368
if (t == typeof(global::System.Web.Services.Description.
PortType
)) {
6252
global::System.Web.Services.Description.
PortType
Read75_PortType(bool isNullable, bool checkType) {
6263
global::System.Web.Services.Description.
PortType
o;
System\Web\Services\Description\WebServicesInteroperability.cs (1)
107
PortType
portType = descriptions.GetPortType(binding.Type);