2 instantiations of PortType
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (1)
259
WsdlNS.PortType wsdlPortType = new WsdlNS.
PortType
();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
7821
o = new global::System.Web.Services.Description.
PortType
();
50 references to PortType
dotnet-svcutil-lib (50)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (1)
1077
foreach (WsdlNS.
PortType
portType in description.PortTypes)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlContractConversionContext.cs (3)
23
private readonly WsdlNS.
PortType
_wsdlPortType;
33
internal WsdlContractConversionContext(ContractDescription contract, WsdlNS.
PortType
wsdlPortType)
89
public WsdlNS.
PortType
WsdlPortType { get { return _wsdlPortType; } }
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (5)
45
WsdlNS.
PortType
wsdlPortType = CreateWsdlPortType(contract);
254
private WsdlNS.
PortType
CreateWsdlPortType(ContractDescription contract)
259
WsdlNS.
PortType
wsdlPortType = new WsdlNS.PortType();
324
WsdlNS.
PortType
wsdlPortType = _exportedContracts[endpoint.Contract].WsdlPortType;
1102
internal static void AddUsingSessionAttributeIfNeeded(WsdlNS.
PortType
wsdlPortType, ContractDescription contract)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (15)
111
foreach (WsdlNS.
PortType
wsdlPortType in wsdl.PortTypes)
164
public ContractDescription ImportContract(WsdlNS.
PortType
wsdlPortType)
197
public ServiceEndpointCollection ImportEndpoints(WsdlNS.
PortType
wsdlPortType)
298
private ContractDescription ImportWsdlPortType(WsdlNS.
PortType
wsdlPortType, WsdlPortTypeImportOptions importOptions, ErrorBehavior errorBehavior)
533
private ContractDescription CreateContractDescription(WsdlNS.
PortType
wsdlPortType, XmlQualifiedName wsdlPortTypeQName)
542
private OperationDescription CreateOperationDescription(WsdlNS.
PortType
wsdlPortType, WsdlNS.Operation wsdlOperation, ContractDescription contract)
579
WsdlNS.
PortType
wsdlPortType = _wsdlDocuments.GetPortType(wsdlPortTypeQName);
715
private void VerifyImportedWsdlPortType(WsdlNS.
PortType
wsdlPortType)
871
WsdlNS.
PortType
wsdlPortType = wsdlDocuments.GetPortType(wsdlOperationBinding.Binding.Type);
1273
internal static void SetSession(ContractDescription contractDescription, WsdlNS.
PortType
wsdlPortType)
1501
private IEnumerable<WsdlNS.Binding> FindBindingsForPortType(WsdlNS.
PortType
wsdlPortType)
1736
if (item is WsdlNS.
PortType
)
1785
if (item is WsdlNS.
PortType
)
1788
wsdlNs = ((WsdlNS.
PortType
)item).ServiceDescription.TargetNamespace ?? String.Empty;
1820
WsdlNS.
PortType
wsdlPortType = ((WsdlNS.Operation)item).PortType;
FrameworkFork\System.Web.Services\Configuration\WebServicesSection.cs (1)
46
table.Add(typeof(
PortType
), new XmlAttributes());
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (18)
1188
private
PortType
_parent;
1191
internal void SetParent(
PortType
parent)
1210
public
PortType
PortType
2343
public
PortType
this[int index]
2345
get { return (
PortType
)List[index]; }
2353
public int Add(
PortType
portType)
2362
public void Insert(int index,
PortType
portType)
2371
public int IndexOf(
PortType
portType)
2380
public bool Contains(
PortType
portType)
2389
public void Remove(
PortType
portType)
2398
public void CopyTo(
PortType
[] array, int index)
2407
public
PortType
this[string name]
2409
get { return (
PortType
)Table[name]; }
2418
return ((
PortType
)value).Name;
2427
((
PortType
)value).SetParent((ServiceDescription)parent);
2919
internal OperationCollection(
PortType
portType) : base(portType) { }
2991
((Operation)value).SetParent((
PortType
)parent);
3224
else if (type == typeof(
PortType
))
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptions.cs (2)
133
public
PortType
GetPortType(XmlQualifiedName name)
136
PortType
portType = null;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (5)
106
Write75_PortType(@"portType", @"http://schemas.xmlsoap.org/wsdl/", ((global::System.Web.Services.Description.
PortType
)a[ia]), false, false);
1739
private void Write75_PortType(string n, string ns, global::System.Web.Services.Description.
PortType
o, bool isNullable, bool needType)
1749
if (t == typeof(global::System.Web.Services.Description.
PortType
))
7806
private global::System.Web.Services.Description.
PortType
Read75_PortType(bool isNullable, bool checkType)
7820
global::System.Web.Services.Description.
PortType
o;