You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<exceptioncref="T:System.ArgumentException">Either the <paramrefname="sourcePartUri" /> or <paramrefname="targetPartUri" /> does not have a valid <seecref="T:System.Uri" /> syntax.</exception>
Copy file name to clipboardExpand all lines: xml/System.IO.Packaging/PackageRelationshipSelector.xml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -119,6 +119,7 @@ The <paramref name="sourceUri" /> is not the <see cref="T:System.IO.Packaging.Pa
119
119
<returns>A list of relationships that match the selection parameters specified to the <seecref="M:System.IO.Packaging.PackageRelationshipSelector.#ctor(System.Uri,System.IO.Packaging.PackageRelationshipSelectorType,System.String)" /> constructor.</returns>
120
120
<remarks>To be added.</remarks>
121
121
<relatedtype="ExternalDocumentation"href="https://go.microsoft.com/fwlink/?LinkId=74494">Digital Signing Framework of the Open Packaging Conventions</related>
122
+
<exceptioncref="T:System.ArgumentNullException"><paramrefname="package" /> is <seelangword="null" />.</exception>
122
123
</Docs>
123
124
</Member>
124
125
<MemberMemberName="SelectionCriteria">
@@ -234,4 +235,4 @@ The <paramref name="sourceUri" /> is not the <see cref="T:System.IO.Packaging.Pa
<paramname="compressionOption">To be added.</param>
84
-
<summary>To be added.</summary>
81
+
<paramname="partUri">The Uri that represents the <seecref="T:System.IO.Packaging.PackagePart" />.</param>
82
+
<paramname="contentType">A string representing the content type of the <seecref="T:System.IO.Packaging.PackagePart" />.</param>
83
+
<paramname="compressionOption">The compression option to be used for this <seecref="T:System.IO.Packaging.PackagePart" />.</param>
84
+
<summary>Custom implementation for the underlying file format. Adds a new item to the zip archive corresponding to the <seecref="T:System.IO.Packaging.PackagePart" /> in the <seecref="T:System.IO.Packaging.ZipPackage" />.</summary>
85
85
<returns>To be added.</returns>
86
86
<remarks>To be added.</remarks>
87
+
<exceptioncref="T:System.ArgumentNullException"><paramrefname="partUri" /> is <seelangword="null" />.</exception>
88
+
<exceptioncref="T:System.ArgumentException"><paramrefname="partUri" /> does not have a valid <seecref="T:System.Uri" /> syntax.</exception>
89
+
<exceptioncref="T:System.ArgumentOutOfRangeException"><paramrefname="compressionOption" /> does not have a valid <seecref="T:System.IO.Packaging.CompressionOption" /> value.</exception>
87
90
</Docs>
88
91
</Member>
89
92
<MemberMemberName="DeletePartCore">
@@ -113,9 +116,11 @@
113
116
<ParameterName="partUri"Type="System.Uri" />
114
117
</Parameters>
115
118
<Docs>
116
-
<paramname="partUri">To be added.</param>
117
-
<summary>To be added.</summary>
119
+
<paramname="partUri">The Uri that represents the <seecref="T:System.IO.Packaging.PackagePart" />.</param>
120
+
<summary>This method is for a custom implementation specific to the file format. Deletes the <seecref="T:System.IO.Packaging.PackagePart" /> corresponding to the <seecref="T:System.Uri" /> specified. Attempting to delete a part that does not exist is not an error and so does not throw an exception.</summary>
118
121
<remarks>To be added.</remarks>
122
+
<exceptioncref="T:System.ArgumentNullException"><paramrefname="partUri" /> is <seelangword="null" />.</exception>
123
+
<exceptioncref="T:System.ArgumentException"><paramrefname="partUri" /> does not have a valid <seecref="T:System.Uri" /> syntax.</exception>
<paramname="disposing"><seelangword="true" /> if called during <seecref="M:System.IO.Packaging.ZipPackage.Dispose" />, <seelangword="false" /> if called during <seecref="M:System.IO.Packaging.ZipPackage.Finalize" />.</param>
154
+
<summary>Closes the underlying <seecref="T:System.IO.Packaging.ZipPackage" /> object for this container.</summary>
150
155
<remarks>To be added.</remarks>
151
156
</Docs>
152
157
</Member>
@@ -175,7 +180,7 @@
175
180
</ReturnValue>
176
181
<Parameters />
177
182
<Docs>
178
-
<summary>To be added.</summary>
183
+
<summary>This method is for a custom implementation corresponding to the underlying zip file format.</summary>
179
184
<remarks>To be added.</remarks>
180
185
</Docs>
181
186
</Member>
@@ -206,8 +211,8 @@
206
211
<ParameterName="partUri"Type="System.Uri" />
207
212
</Parameters>
208
213
<Docs>
209
-
<paramname="partUri">To be added.</param>
210
-
<summary>To be added.</summary>
214
+
<paramname="partUri">The Uri that represents the <seecref="T:System.IO.Packaging.PackagePart" />.</param>
215
+
<summary>This method is for a custom implementation specific to the file format. Returns a <seecref="T:System.IO.Packaging.PackagePart" /> after reading the actual physical bits. The method returns <seelangword="null" /> to indicate that the part corresponding to the specified <seecref="T:System.Uri" /> was not found in the container. This method does not throw an exception if a part does not exist.</summary>
211
216
<returns>To be added.</returns>
212
217
<remarks>To be added.</remarks>
213
218
</Docs>
@@ -237,10 +242,10 @@
237
242
</ReturnValue>
238
243
<Parameters />
239
244
<Docs>
240
-
<summary>To be added.</summary>
241
-
<returns>To be added.</returns>
245
+
<summary>This method is for a custom implementation specific to the file format. This method retrieves the actual parts from the underlying <seecref="T:System.IO.Packaging.ZipPackage" />.</summary>
246
+
<returns>An array of <seecref="T:System.IO.Packaging.ZipPackagePart" /> objects.</returns>
0 commit comments