27 references to Get
System.Activities.Core.Presentation (2)
System\ServiceModel\Activities\Presentation\Factories\ReceiveAndSendReplyFactory.cs (1)
33
ServiceContractName = XName.
Get
("IService", "http://tempuri.org/"),
System\ServiceModel\Activities\Presentation\Factories\SendAndReceiveReplyFactory.cs (1)
33
ServiceContractName = XName.
Get
("IService", "http://tempuri.org/"),
System.Data.Services (1)
System\Data\Services\Serializers\SyndicationSerializer.cs (1)
278
XName.
Get
(XmlConstants.RowCountElement, XmlConstants.DataWebMetadataNamespace),
System.Data.Services.Client (2)
System\Data\Services\Client\AtomMaterializer.cs (2)
1495
var attribute = element.Attribute(XName.
Get
(localName, item.SegmentNamespaceUri));
1505
var child = element.Element(XName.
Get
(item.SegmentName, item.SegmentNamespaceUri));
System.ServiceModel.Activation (2)
System\ServiceModel\Activities\Activation\WorkflowServiceHostFactory.cs (2)
84
service = CreatetWorkflowServiceAndSetCompiledExpressionRoot(null, activityStream, XName.
Get
(XmlConvert.EncodeLocalName(serviceName), serviceNamespace));
125
XName.
Get
(XmlConvert.EncodeLocalName(VirtualPathUtility.GetFileName(ServiceHostingEnvironment.FullVirtualPath)),
System.ServiceModel.Activities (6)
System\ServiceModel\Activities\ContractInferenceHelper.cs (1)
83
serviceContractName = XName.
Get
(serviceContractName.LocalName, NamingHelper.DefaultNamespace);
System\ServiceModel\Activities\Receive.cs (1)
494
receiveActivity.ServiceContractName = XName.
Get
(operation.DeclaringContract.Name, operation.DeclaringContract.Namespace);
System\ServiceModel\Activities\WorkflowServiceHost.cs (3)
30
static readonly XName mexContractXName = XName.
Get
(ServiceMetadataBehavior.MexContractName, ServiceMetadataBehavior.MexContractNamespace);
593
XName endpointContractName = XName.
Get
(serviceEndpoint.Contract.Name, serviceEndpoint.Contract.Namespace);
686
this.DurableInstancingOptions.ScopeName = XName.
Get
(XmlConvert.EncodeLocalName(Path.GetFileName(virtualPathExtension.VirtualPath)),
System\ServiceModel\XamlIntegration\XNameTypeConverter.cs (1)
83
return XName.
Get
(localName, ns);
XamlBuildTask (14)
Microsoft\Build\Tasks\Xaml\GenerateTemporaryAssemblyTask.cs (14)
90
XElement projectElement = projectDocument.Element(XName.
Get
("Project", MSBuildNamespace));
145
IEnumerable<XElement> itemGroups = project.Elements(XName.
Get
("ItemGroup", MSBuildNamespace));
146
itemGroups.Elements(XName.
Get
(itemName, MSBuildNamespace)).Remove();
154
XElement newItemGroup = new XElement(XName.
Get
("ItemGroup", MSBuildNamespace));
158
XElement newElement = new XElement(XName.
Get
(itemName, MSBuildNamespace));
176
XElement newItemGroup = new XElement(XName.
Get
("ItemGroup", MSBuildNamespace));
180
XElement newResource = new XElement(XName.
Get
("EmbeddedResource", MSBuildNamespace));
183
XElement type = new XElement(XName.
Get
("Type", MSBuildNamespace), "Non-Resx");
186
XElement withCulture = new XElement(XName.
Get
("WithCulture", MSBuildNamespace), "false");
198
IEnumerable<XElement> itemGroups = project.Elements(XName.
Get
("PropertyGroup", MSBuildNamespace));
199
itemGroups.Elements(XName.
Get
(propertyName, MSBuildNamespace)).Remove();
207
XElement newPropertyGroup = new XElement(XName.
Get
("PropertyGroup", MSBuildNamespace));
213
XElement newElement = new XElement(XName.
Get
(prop.Name, MSBuildNamespace));
217
newElement.SetAttributeValue(XName.
Get
("Condition", string.Empty), prop.Condition);