2 writes to clsid
System.ServiceModel (2)
System\ServiceModel\ComIntegration\PersistStreamTypeWrapper.cs (2)
182this.clsid = typeof(T).GUID; 292streamableObject.GetClassID(out objToSerialize.clsid);
5 references to clsid
System.ServiceModel (5)
System\ServiceModel\ComIntegration\PersistStreamTypeWrapper.cs (5)
212if (clsid == typeof(T).GUID) 256throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.CLSIDOfTypeDoesNotMatch, typeof(T).GUID.ToString(), clsid.ToString("B")))); 310if (IsAllowedClass(streamWrapper.clsid)) 312return PersistHelper.ActivateAndLoadFromByteStream(streamWrapper.clsid, streamWrapper.dataStream); 315throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.NotAllowedPersistableCLSID, streamWrapper.clsid.ToString("B"))));