1 instantiation of Workspace
System.ServiceModel (1)
System\ServiceModel\Syndication\ServiceDocument.cs (1)
97return new Workspace();
20 references to Workspace
System.ServiceModel (19)
System\ServiceModel\Syndication\AtomPub10ServiceDocumentFormatter.cs (4)
447ResourceCollectionInfo ReadCollection(XmlReader reader, Workspace workspace) 639Workspace ReadWorkspace(XmlReader reader, ServiceDocument document) 641Workspace result = CreateWorkspace(document); 769void WriteWorkspace(XmlWriter writer, Workspace workspace, Uri baseUri)
System\ServiceModel\Syndication\ServiceDocument.cs (7)
20Collection<Workspace> workspaces; 26public ServiceDocument(IEnumerable<Workspace> workspaces) 30this.workspaces = new NullNotAllowedCollection<Workspace>(); 31foreach (Workspace workspace in workspaces) 60public Collection<Workspace> Workspaces 66this.workspaces = new NullNotAllowedCollection<Workspace>(); 95protected internal virtual Workspace CreateWorkspace()
System\ServiceModel\Syndication\ServiceDocumentFormatter.cs (8)
64internal static void LoadElementExtensions(XmlBuffer buffer, XmlDictionaryWriter writer, Workspace workspace) 93protected static ResourceCollectionInfo CreateCollection(Workspace workspace) 112protected static Workspace CreateWorkspace(ServiceDocument document) 139protected static void LoadElementExtensions(XmlReader reader, Workspace workspace, int maxExtensionSize) 184protected static bool TryParseAttribute(string name, string ns, string value, Workspace workspace, string version) 211protected static bool TryParseElement(XmlReader reader, Workspace workspace, string version) 238protected static void WriteAttributeExtensions(XmlWriter writer, Workspace workspace, string version) 274protected static void WriteElementExtensions(XmlWriter writer, Workspace workspace, string version)
System.ServiceModel.Web (1)
AssemblyInfo.cs (1)
49[assembly: TypeForwardedTo(typeof(System.ServiceModel.Syndication.Workspace))]