1 instantiation of Workspace
System.ServiceModel.Syndication (1)
System\ServiceModel\Syndication\ServiceDocument.cs (1)
68
return new
Workspace
();
21 references to Workspace
System.ServiceModel (1)
netstandard.cs (1)
270
[assembly: TypeForwardedTo(typeof(
Workspace
))]
System.ServiceModel.Syndication (19)
System\ServiceModel\Syndication\AtomPub10ServiceDocumentFormatter.cs (4)
352
private ResourceCollectionInfo ReadCollection(XmlReader reader,
Workspace
workspace)
504
private
Workspace
ReadWorkspace(XmlReader reader, ServiceDocument document)
506
Workspace
result = CreateWorkspace(document);
615
private void WriteWorkspace(XmlWriter writer,
Workspace
workspace, Uri baseUri)
System\ServiceModel\Syndication\ServiceDocument.cs (7)
13
private Collection<
Workspace
> _workspaces;
19
public ServiceDocument(IEnumerable<
Workspace
> workspaces)
23
_workspaces = new NullNotAllowedCollection<
Workspace
>();
24
foreach (
Workspace
workspace in workspaces)
39
public Collection<
Workspace
> Workspaces
41
get => _workspaces ??= new NullNotAllowedCollection<
Workspace
>();
66
protected internal virtual
Workspace
CreateWorkspace()
System\ServiceModel\Syndication\ServiceDocumentFormatter.cs (8)
53
internal static void LoadElementExtensions(XmlBuffer buffer, XmlDictionaryWriter writer,
Workspace
workspace)
82
protected static ResourceCollectionInfo CreateCollection(
Workspace
workspace)
102
protected static
Workspace
CreateWorkspace(ServiceDocument document)
132
protected static void LoadElementExtensions(XmlReader reader,
Workspace
workspace, int maxExtensionSize)
182
protected static bool TryParseAttribute(string name, string ns, string value,
Workspace
workspace, string version)
212
protected static bool TryParseElement(XmlReader reader,
Workspace
workspace, string version)
242
protected static void WriteAttributeExtensions(XmlWriter writer,
Workspace
workspace, string version)
282
protected static void WriteElementExtensions(XmlWriter writer,
Workspace
workspace, string version)
System.ServiceModel.Web (1)
System.ServiceModel.Web.cs (1)
40
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ServiceModel.Syndication.
Workspace
))]